-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
33 lines (32 loc) · 810 Bytes
/
style.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
body{
margin: 0;
height: 100vh;
background-color: black;
overflow: hidden;
}
span{
/* background: url("https://cdn-icons-png.flaticon.com/512/210/210545.png"); */
/* background: url("https://cdn-icons-png.flaticon.com/512/9492/9492238.png"); */
background: url("https://cdn-icons-png.flaticon.com/512/9624/9624076.png");
width: 100px;
height: 100px;
position: absolute;
pointer-events: none;
background-size: cover;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
animation: animate 6s linear;
}
@keyframes animate{
0%{
transform: teranslate(-50%,-50%);
opacity: 1;
filter: hue-rotate(0);
}
100%{
transform: translate(-50%,-5000%);
opacity: 0;
filter: hue-rotate(720deg);
}
}