-
Notifications
You must be signed in to change notification settings - Fork 0
/
css3仪表盘.html
146 lines (118 loc) · 2.3 KB
/
css3仪表盘.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body {
background: #fff;
}
.bg {
position: relative;
margin: 50px auto;
width: 400px;
height: 400px;
border-radius: 50%;
background: conic-gradient(
#f1462c 0%,
#fc5d2c 12.4%,
#fff 12.5%,
#fff 12.5%,
#fc5d2c 12.5%,
#fba73e 24.9%,
#fff 24.9%,
#fff 25%,
#fba73e 25%,
#e0fa4e 37.4%,
#fff 37.4%,
#fff 37.5%,
#e0fa4e 37.5%,
#12dd7e 49.9%,
#fff 49.9%,
#fff 50%,
#12dd7e 50%,
#0a6e3f 62.4%,
#fff 62.4%,
#fff 62.5%
);
transform: rotate(-112.5deg);
transform-origin: 50% 50%;
}
.bg::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 370px;
height: 370px;
border-radius: 50%;
background: #fff;
}
.bg::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 320px;
height: 320px;
border-radius: 50%;
background: radial-gradient(
#fff 0%,
#fff 25%,
transparent 25%,
transparent 100%
), conic-gradient(
#f1462c 0 12.5%,
#fba73e 0 25%,
#e0fa4e 0 37.5%,
#12dd7e 0 50%,
#0a6e3f 0 62.5%,
#fff 0 100%
);
}
.point {
position: absolute;
width: 30px;
height: 30px;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
background: radial-gradient(#467dc6 0%, #a4c6f3 100%);
border-radius: 50%;
z-index: 999;
}
.point::before {
content: '';
position: absolute;
width: 5px;
height: 350px;
left: 50%;
top: 50%;
border-radius: 100% 100% 5% 5%;
transform: translate(-50%, -50%) rotate(0);
background: linear-gradient(
180deg,
#9bc7f6 0,
#467dc6 50%,
transparent 50%,
transparent 100%
);
animation: rotate 3s cubic-bezier(.93, 1.32, .89, 1.15) infinite;
}
@keyframes rotate {
50% {
transform: translate(-50%, -50%) rotate(150deg);
}
100% {
transform: translate(-50%, -50%) rotate(150deg);
}
}
</style>
</head>
<body>
<div class="bg">
<div class="point"></div>
</div>
</body>
</html>