immersive2/index.html

48 lines
1.0 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>
</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>
<script type="module" src="./src/app.ts"></script>
</body>
</html>