-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNyanCat.css
77 lines (69 loc) · 1.01 KB
/
NyanCat.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
/*#nyan {
background: red;
animation: move 25s infinite ;
}
@keyframes move {
from {top: 0px;}
to {top: 200px;}
}*/
html, body {
width: 100%;
height: 100%;
}
div {
width: 80px;
height: 80px;
background: red;
position: relative;
animation: move 5s infinite;
-webkit-animation: slide 5s infinite;
}
dive:hover {
animation: slide 5s infinite;
}
@keyframes slide {
0% {
left: 0;
top: 0;
}
10% {
left: 200px;
top: 100px;
}
20% {
left: 300px;
top: 200px;
}
30% {
left: 400px;
top: 300px;
}
40% {
left: 500px;
top: 400px;
}
50% {
left: 600px;
top: 500px;
}
60% {
left: 700px;
top: 600px;
}
70% {
left: 800px;
top: 700px;
}
80% {
left: 900px;
top: 800px;
}
90% {
left: 1000px;
top: 900px;
}
100% {
left: 1200px;
top: 900px;
}
}