-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (46 loc) · 1.1 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="styles/index.css" rel="stylesheet">
</head>
<body>
<div id="header">
<div id="logo">
</div>
</div>
<div id="container">
<div id="animate">
<div id="canvas">
<div id="element">
<div id="object"></div>
<div id="rotate"></div>
</div>
</div>
<div id="time-slider">
<div id="title">
<h2>CSS</h2>
</div>
<div id="middle">
<div id="slider">
</div>
</div>
<div id="time">
</div>
<div id="button">
<button id="play">play</button>
<button id="reset">reset</button>
</div>
</div>
</div><div id="table">
</div>
</div>
<div id="footer">
</div>
<script src="scripts/common.js"></script>
<script src="scripts/obj_ctrl.js"></script>
<script src="scripts/circle_ctrl.js"></script>
<script src="scripts/animation.js"></script>
</body>
</html>