-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmoke.css
77 lines (71 loc) · 1.06 KB
/
smoke.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
video{
object-fit: cover;
}
section{
background:#000 ;
}
h1{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
letter-spacing: 1rem;
text-transform: uppercase;
color: #f5f5f5;
font-size: 5em;
/* font-family: sans-serif; */
}
h1 span{
display: inline-block;
animation: animate 1s ease-in-out;
}
@keyframes animate{
0%{
opacity: 0%;
transform: rotateY(90deg);
filter: blur(10px);
}
100%{
opacity: 1;
transform: rotateY(0deg);
filter: blur(0px);
}
}
h1 span:nth-child(1)
{
animation-delay: 0.6s;
}
h1 span:nth-child(2)
{
animation-delay: 1s;
}
h1 span:nth-child(3)
{
animation-delay: 1.7s;
}
h1 span:nth-child(4)
{
animation-delay: 2.3s;
}
h1 span:nth-child(5)
{
animation-delay: 2.7s;
}
h1 span:nth-child(6)
{
animation-delay: 3.2s;
}
h1 span:nth-child(7)
{
animation-delay: 3.7s;
}
h1 span:nth-child(8)
{
animation-delay: 4s;
}