33 lines
654 B
HTML
33 lines
654 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Immersive Idea</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;
|
|
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="loader" id="loader">Loading...</div>
|
|
<div id="graphContainer"></div>
|
|
<script type="module" src="./src/app.ts"></script>
|
|
</body>
|
|
</html>
|