forked from WangJia-mm/JavaScript201708
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-event.html
More file actions
38 lines (35 loc) · 845 Bytes
/
1-event.html
File metadata and controls
38 lines (35 loc) · 845 Bytes
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>
<head>
<meta charset="UTF-8">
<title>珠峰培训-事件</title>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
/*background: lightblue;*/
/*background: -webkit-linear-gradient(top left, lightblue, lightcoral, lightgoldenrodyellow, lightcyan);*/
cursor: pointer;
}
#box {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div id="box"></div>
<script src="js/utils201708.min.js"></script>
<script src="js/animate.min.js"></script>
<script src="js/1-3.js"></script>
</body>
</html>