forked from Pengchenyu/cosname01.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 933 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
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="jquery-3.1.1.min.js"></script>
<script src="sunmove.js"></script>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: aliceblue;
}
div {
border-radius: 2px;
float: left;
width: calc(100vw / 11);
height: calc(100vh / 11);
margin: calc(100vh / 11) 0 0 calc(100vw / 11);
}
</style>
</head>
<body>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div><div></div>
</body>
</html>
<script>
cos_move("div","rgba(0,0,0,.3)");
</script>