-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 975 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Scale of the Solar System</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="./libs/tween.esm.js" type="module"></script>
<script src="./libs/two.module.js" type="module"></script>
<script src="./libs/zui.js" type="module"></script>
<script src='./js/main.js' type="module"></script>
<script src='./js/pan&Zoom.js' type="module"></script>
<script src='./js/animation.js' type="module"></script>
</head>
<body>
<div id="clickable" oncontextmenu="return false;"></div>
<div id="options" style="position: relative;">
<div style="padding: 0.6em">
<div class="play"></div>
<button class="change">Change</button>
</div>
</div>
</body>
</html>