-
Notifications
You must be signed in to change notification settings - Fork 0
/
bloopExperiment.html
130 lines (101 loc) · 3.01 KB
/
bloopExperiment.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
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bloop Animation Test</title>
<style>
@-webkit-keyframes bloop_opacity {
0% { opacity: 0; }
10% { opacity: 1; }
50% { opacity: 1; }
60% { opacity: 0; }
100% { opacity: 0; }
}
@-webkit-keyframes bloop_meter {
0% { width: 0; }
10% { width: 0; }
40% { width: 100%; }
100% { width: 100%; }
}
.bloop {
box-sizing: border-box;
position: absolute;
width: 200px;
height: 100px;
padding: 12px;
opacity: 0;
background-color: hotpink;
border-radius: 12px;
-webkit-animation-duration: 10s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: bloop_opacity;
-webkit-transition: opacity 0 ease-in-out;
}
.bloop:after {
content: '';
display: block;
position: absolute;
bottom: -16px;
left: 50%;
width: 0;
height: 0;
margin-left: -16px;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-top: 16px solid hotpink;
}
.bloop .meter {
width: 100%;
height: 16px;
background: red;
}
.bloop .meter .bar {
display: block;
background: green;
width: 0;
height: 100%;
-webkit-animation-duration: 10s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: bloop_meter;
-webkit-transition: opacity 0 linear;
}
#b1 {
top: 100px;
left: 100px;
}
#b1, #b1 .bar {
-webkit-animation-delay: 0s;
}
#b2 {
top: 100px;
left: 350px;
}
#b2, #b2 .bar {
-webkit-animation-delay: 2s;
}
#b3 {
top: 100px;
left: 600px;
}
#b3, #b3 .bar {
-webkit-animation-delay: 4s;
}
</style>
</head>
<body>
<div id="b1" class="bloop">
<p>Some Content Perhaps?</p>
<div class="meter"><span class="bar"></span></div>
</div>
<div id="b2" class="bloop">
<p>Some Content Perhaps?</p>
<div class="meter"><span class="bar"></span></div>
</div>
<div id="b3" class="bloop">
<p>Some Content Perhaps?</p>
<div class="meter"><span class="bar"></span></div>
</div>
</body>
</html>