-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (46 loc) · 1.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
html,
body {
margin: 0;
height: 100%;
}
#reloadButton {
position: absolute;
left: 50%;
height: 38px;
margin-right: 7px;
margin-left: 7px;
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
font-size: 20px;
color: #1e94bf;
background-color: #ffffff;
border-color: #1e94bf;
border-radius: 5px;
transition: background-color 0.15s;
border: 1px solid;
}
#reloadButton:hover {
color: #ffffff;
background-color: #1e94bf;
}
#c {
width: 100vw;
height: 100vh;
display: block;
}
</style>
<title>3D Data Vis</title>
</head>
<body>
<canvas id="c"></canvas>
<!-- <div id="container" style="position: absolute; width: 100%; height: 100%;"></div> -->
</body>
<script type="module" src="./src/main.js"></script>
</html>