-
Notifications
You must be signed in to change notification settings - Fork 0
/
2015-08-24.html
105 lines (101 loc) · 3.02 KB
/
2015-08-24.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
<!doctype html>
<html>
<head>
<title>2015/08/24</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
<style>
body {
font-family: sans-serif;
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.fu-progress {
position: absolute;
width: 250px;
height: 250px;
left: 50%;
top: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
border: 5px solid #178bca;
-webkit-border-radius: 50% !important;
border-radius: 50% !important;
overflow: hidden;
}
.fu-progress .fu-inner {
position: absolute;
overflow: hidden;
z-index: 2;
width: 240px;
height: 240px;
border: 5px solid #ffffff;
-webkit-border-radius: 50%;
border-radius: 50%;
-webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
/*background-clip: content-box;*/
}
.fu-progress .fu-inner .water {
position: absolute;
z-index: 1;
background: rgba(23, 139, 202, 0.5);
width: 200%;
height: 200%;
transform: translateZ(0);
-webkit-transform: translateZ(0);
top: 50%;
left: -50%;
border: 1px solid transparent;
-webkit-border-radius: 40%;
border-radius: 40%;
-webkit-animation: spin 10s infinite linear;
animation: spin 10s infinite linear;
}
.fu-progress .fu-inner .glare {
position: absolute;
top: -120%;
left: -120%;
z-index: 5;
width: 200%;
height: 200%;
transform: rotate(45deg);
background: #ffffff;
background: rgba(255, 255, 255, 0.2);
-webkit-border-radius: 50%;
border-radius: 50%;
}
.fu-progress .fu-inner .fu-percent {
position: absolute;
top: 57px;
width: 100%;
height: 100%;
font-size: 6em;
font-weight: bold;
color: #045681;
text-align: center;
}
</style>
</head>
<body>
<div class="fu-progress">
<div class="fu-inner">
<div class="fu-percent percent"><span>DJ</span></div>
<div class="water"></div>
<div class="glare"></div>
</div>
</div>
</body>
</html>