-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanima4.css
96 lines (88 loc) · 1.14 KB
/
anima4.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body
{
margin: 0px;
padding: 0px;
background-image:url(hu.jpg);
background-repeat: no-repeat;
background-size: cover;
height: 10vh;
}
div
{
position: relative;
margin-top: 400px;
margin-left: 120px;
height: 10vh;
width: 120vh;
}
video
{
height: 65vh;
width: 170vh;
object-fit: contain;
margin-top: 0px;
position: relative;
}
ul
{
margin:0;
padding:0;
position:absolute;
top: 20%;
left: 24%;
width:100%;
text-align:justify;
color:#fff;
font-size: 5em;
letter-spacing:0.2em;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
li
{
opacity:0;
display: inline-block;
animation:animat .7s linear forwards;
}
@keyframes animat
{
0%
{
opacity: 0;
transform:rotateY(90deg);
filter: blur(9px);
}
100%
{
opacity: 1;
transform:rotateY(0deg);
filter: blur(0);
}
}
li:nth-child(1)
{
animation-delay: 1.3s;
}
li:nth-child(2)
{
animation-delay: 1.7s;
}
li:nth-child(3)
{
animation-delay: 2.2s;
}
li:nth-child(4)
{
animation-delay: 2.7s;
}
li:nth-child(5)
{
animation-delay: 3.2s;
}
li:nth-child(6)
{
animation-delay: 3.7s;
}
li:nth-child(7)
{
animation-delay: 4.2s;
}