-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathIron Factory.html
93 lines (84 loc) · 1.75 KB
/
Iron Factory.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
<html>
<head>
<title>Awesome Dots | Loaders</title>
<style>
#iron-factory,
#iron-factory:after,
#iron-factory:before {
width: 25px;
height: 25px;
background-color: white;
border-radius: 5px;
animation-duration: 2s;
animation-iteration-count: infinite;
position: absolute;
}
#iron-factory {
left: 50%;
top: 50%;
animation-name: move;
}
#iron-factory:after {
left: 40px;
content: "";
animation-timing-function: ease-out;
animation-name: fade-out;
}
#iron-factory:before {
right: 40px;
content: "";
animation-timing-function: ease-in;
animation-name: drop-in;
}
@keyframes drop-in {
0% {
transform: translateY(-100%);
background-color: white;
}
25% {
transform: translateY(0px);
background-color: #ef4f11;
}
100% {
transform: translateY(0px);
background-color: #1d1f20;
}
}
@keyframes fade-out {
0% {
transform: translateY(0px);
background-color: #1d1f20;
}
40% {
transform: translateY(0px);
background-color: #1d1f20;
}
50% {
transform: translateY(0px);
background-color: white;
}
100% {
transform: translateY(0px);
background-color: white;
}
}
@keyframes move {
0% {
background-color: #1d1f20;
transform: translateX(0px);
}
50% {
background-color: #1d1f20;
transform: translateX(0px);
}
100% {
background-color: #1d1f20;
transform: translateX(40px);
}
}
</style>
</head>
<body>
<div id="iron-factory"></div>
</body>
</html>