-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy patheventsdemo.txt
56 lines (51 loc) · 1004 Bytes
/
eventsdemo.txt
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
/***************************
BEGIN OF FLYING SANTA
***************************/
.santa {
width:20vw;
min-width:175px;
z-index: 600;
cursor: pointer;
-webkit-animation: FlyingSanta 38s infinite linear;
-moz-animation: FlyingSanta 38s infinite linear;
-ms-animation: FlyingSanta 38s infinite linear;
-o-animation: FlyingSanta 38s infinite linear;
animation: FlyingSanta 38s infinite linear;
bottom: 0%;
left: 0%;
position: absolute;
}
@keyframes FlyingSanta {
25% {
bottom: 80%;
left: 85%;
transform: rotateY(0deg);
}
26% {
transform: rotateY(180deg);
}
50% {
bottom: 60%;
left: 0%;
transform: rotateY(180deg);
}
51% {
transform: rotateY(0deg);
}
75% {
bottom: 40%;
left: 85%;
transform: rotateY(0deg);
}
76% {
bottom: 40%;
left: 85%;
transform: rotateY(180deg);
}
99% {
transform: rotateY(180deg);
}
}
/***************************
//// END OF FLYING SANTA ///
***************************/