-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
executable file
·38 lines (30 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Class 3D Visualizer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<!-- <script src="https://code.createjs.com/1.0.0/tweenjs.min.js"></script> -->
<style>
body {
background-color: #ccc;
color: #000;
}
.ui {
position: absolute;
}
</style>
</head>
<body>
<div>
<script type="module" src="js/main.js"></script>
</div>
<!-- <img class="ui" id="frame_s"
height="120px" style="bottom:0; left: 0; margin-left: 10px; margin-right: 233px; margin-bottom: 10px; border: 3px solid #000; borde;" >
<img class="ui" id="frame_i"
height="120px" style="bottom:0; right:0; margin-left: 239px; margin-right: 10px; margin-bottom: 10px; border: 3px solid #000; borde;">
-->
</body>
</html>