74 lines
1.9 KiB
HTML
74 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Deep Diagram</title>
|
|
<style>
|
|
body {
|
|
|
|
}
|
|
|
|
.loader {
|
|
position: fixed;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 200px;
|
|
height: 200px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
flex-direction: column;
|
|
z-index: -1;
|
|
/*noinspection CssUnknownTarget*/
|
|
background: url("/spinner.gif");
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#questLaunch {
|
|
position: fixed;
|
|
top: 30px;
|
|
right: 30px;
|
|
padding: 10px;
|
|
background: #000;
|
|
color: #fff;
|
|
font-size: 1.5em;
|
|
z-index: 100;
|
|
}
|
|
|
|
#download {
|
|
position: fixed;
|
|
z-index: 11;
|
|
width: 200px;
|
|
height: 20px;
|
|
position: absolute;
|
|
bottom: 50px;
|
|
left: 16px;
|
|
padding: 10px;
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
</style>
|
|
<link as="script" href="/newRelic.js" rel="preload">
|
|
<script src="/newRelic.js"></script>
|
|
<meta content="width=device-width, initial-scale=1, height=device-height" 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"/>
|
|
<script src='/niceware.js'></script>
|
|
</head>
|
|
<body>
|
|
<!--<div class="loader" id="loader">Loading...</div> -->
|
|
<div id="questLaunch"><a href="https://www.oculus.com/open_url/?url=https://www.deepdiagram.com/" target="_blank">Launch
|
|
On Quest</a>
|
|
</div>
|
|
<div id="download"><a href="#" id="downloadLink">Download Model</a></div>
|
|
<script type="module" src="./src/app.ts"></script>
|
|
</body>
|
|
</html>
|