-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimation_delay.html
69 lines (51 loc) · 1.29 KB
/
animation_delay.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.colorcycle {
width: 100vw;
height: 10vh;
background: black;
animation: cycle 2s linear infinite;
-webkit-animation: cycle 2s linear infinite;
}
@keyframes cycle {
0% {
background: red;
}
15% {
background: orange;
}
30% {
background: yellow;
}
45% {
background: green;
}
60% {
background: blue;
}
75% {
background: purple;
}
90% {
background: pink;
}
}
</style>
</head>
<body>
<div class="colorcycle" style="animation-delay: 0s"></div>
<div class="colorcycle" style="animation-delay: .1s"></div>
<div class="colorcycle" style="animation-delay: .2s"></div>
<div class="colorcycle" style="animation-delay: .3s"></div>
<div class="colorcycle" style="animation-delay: .4s"></div>
<div class="colorcycle" style="animation-delay: .5s"></div>
<div class="colorcycle" style="animation-delay: .6s"></div>
<div class="colorcycle" style="animation-delay: .7s"></div>
<div class="colorcycle" style="animation-delay: .8s"></div>
<div class="colorcycle" style="animation-delay: .9s"></div>
</body>
</html>