-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-3.html
102 lines (85 loc) · 2.06 KB
/
index-3.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #262626;
}
.container span {
color: rgba(255, 255, 255, 0.1);
font-size: 25px;
font-family: Arial, sans-serif;
text-transform: uppercase;
display: inline-block;
transition: all 0.5s;
animation: a 2s infinite;
}
span:nth-child(1) {
animation-delay: 0s;
}
span:nth-child(2) {
animation-delay: 0.2s;
}
span:nth-child(3) {
animation-delay: 0.4s;
}
span:nth-child(4) {
animation-delay: 0.6s;
}
span:nth-child(5) {
animation-delay: 0.8s;
}
span:nth-child(6) {
animation-delay: 1s;
}
span:nth-child(7) {
animation-delay: 1.2s;
}
span:nth-child(8) {
animation-delay: 1.4s;
}
span:nth-child(9) {
animation-delay: 1.6s;
}
span:nth-child(10) {
animation-delay: 1.8s;
}
@keyframes a {
0% {
transform: translateY(0);
margin-left: 0px;
}
25% {
color: red;
transform: translateY(-15px) scale(5);
margin-left: 10px;
text-shadow: 0px 15px 5px rgba(0, 0, 0, 1);
}
100% {
color: green;
transform: translateY(0);
margin-left: 0px;
}
}
</style>
</head>
<body>
<div class="container">
<span>w</span>
<span>e</span>
<span>b</span>
<span>.</span>
<span>h</span>
<span>t</span>
<span>m</span>
<span>l</span>
<span>c</span>
<span>c</span>
</div>
</body>
</html>