-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextBlur.css
More file actions
44 lines (38 loc) · 1.02 KB
/
textBlur.css
File metadata and controls
44 lines (38 loc) · 1.02 KB
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
body{
margin:0;
padding: 0;
width: 100vh;
display: flex;
background: aqua;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h1{
margin:0;
padding: 0;
font-size: 90px;
position: absolute;
top:49%;
left: 30%;
transform: rotate(-40deg)skew(20deg);
text-shadow: 1px 5px 5px grey;
animation-name: ani;
animation-duration: 7s;
animation-delay: .5s;
animation-iteration-count: infinite;
font-weight: 900;
}
@keyframes ani{
0%{
transform: rotate(-40deg)skew(20deg) translate(0,0);
text-shadow: 1px 5px 5px grey;
}
50%{
transform: rotate(-40deg)skew(20deg) translate(100px,-100px);
text-shadow: 0px 32px 10px grey;
filter: blur(6.7px);
}
100%{
transform: rotate(-40deg)skew(20deg) translate(0,0);
text-shadow: 1px 5px 5px grey;
}
}