immersive2/index.html

56 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Deep Diagram</title>
<style>
.loader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
z-index: -1;
background: url("/spinner.gif");
background-position: center;
background-repeat: no-repeat;
text-align: center;
}
#questLaunch {
position: fixed;
top: 0px;
right: 0px;
padding: 10px;
background: #000;
color: #fff;
font-size: 1.5em;
z-index: 100;
}
</style>
<link as="script" href="/newRelic.js" rel="preload">
<script src="/newRelic.js"></script>
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="An immersive vr diagramming experience based on a-frame and webxr" name="description">
<link href="/assets/favicon-16x16.png" rel=icon sizes="16x16" type="image/png">
<link href="/assets/favicon-32x32.png" rel=icon sizes="32x32" type="image/png">
<link href="/assets/favicon-96x96.png" rel=icon sizes="96x96" type="image/png">
<link href="/manifest.webmanifest" rel="manifest"/>
</head>
<body>
<div class="loader" id="loader">Loading...</div>
<div id="graphContainer"></div>
<div id="questLaunch"><a href="https://www.oculus.com/open_url/?url=https://www.deepdiagram.com/">Launch On Quest</a>
</div>
<input id="textInput" type="text"/>
<script type="module" src="./src/app.ts"></script>
</body>
</html>