-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (120 loc) · 3.02 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name = "viewport"
content="width=device-width,
initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"
content="ie=edge">
<title>八卦图</title>
<style>
body{
background-color: #eee;
}
*{
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
@keyframes x {
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}
#八卦{
/* border: 1px solid red; */
width: 400px;
height:400px;
border-radius: 50%;
position: relative;
overflow: hidden;
animation: x 10s infinite linear;
box-shadow: 0px 0px 5px 3px rgba(0, 0, 0,75);
}
#八卦>div:first-child{
height: 100%;
width:50%;
position: absolute;
left: 0;
background: black;
}
#八卦>div:nth-child(2){
height: 100%;
width:50%;
position: absolute;
right: 0;
background: white;
}
#八卦>div:nth-child(3){
/* border: 10px solid red; */
position: absolute;
left: 50%;
width: 200px;
height: 200px;
margin-left: -100px;
border-radius: 50%;
background: black;
}
#八卦>div:nth-child(4){
position: absolute;
left:50%;
width: 200px;
height: 200px;
bottom: 0;
margin-left: -100px;
border-radius: 50%;
background: white
}
#八卦>div:nth-child(5){
position: absolute;
width: 50px;
height: 50px;
left:50%;
top:75px;
margin-left: -25px;
border-radius: 50%;
background: white;
}
#八卦>div:nth-child(6){
position: absolute;
width: 50px;
height: 50px;
left: 50%;
bottom: 75px;
margin-left: -25px;
background:black;
border-radius: 50%;
}
#八卦-wrapper{
/* border: 10px solid red; */
height: 100vh;/*viewpoint height*/
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#八卦-描述{
margin-top: 1em;/*em表示一个字的宽度*/
}
</style>
</head>
<body>
<div id="八卦-wrapper">
<div id="八卦">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div id="八卦-描述">
道可道,非常道
</div>
</div>
</body>
</html>