-
Notifications
You must be signed in to change notification settings - Fork 0
/
crocodile.css
83 lines (76 loc) · 1.49 KB
/
crocodile.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
body {
background-color: #333;
animation: background 10s infinite;
}
.animals {
background-color: transparent;
background-image: url('http://dankmaymays.com/yee/intensifies/yeeyee.gif');
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 100;
animation: animals 10s linear infinite, move 1s infinite alternate;
}
.wtf {
background-image: url('https://media.tenor.co/images/4bef07b6e57c9127e899fe330aa33151/tenor.gif');
width: 300px;
height: 200px;
}
.wtf-sax {
background-image: url('http://vignette1.wikia.nocookie.net/mlg-frag/images/0/0f/Epic_sax_guy.gif/revision/latest?cb=20141124020151');
width: 392px;
height: 485px;
position: fixed;
bottom: 0;
right: 0;
}
.bad-animals {
background-image: url('http://dankmaymays.com/yee/intensifies/brightdisappoint.gif');
height: 100%;
left: 100px;
position: absolute;
top: 100px;
width: 1000%;
z-index: 1;
animation: animals 10s infinite;
}
@keyframes animals {
0% {
background-position: 0px 0px, 0px 0px, 0px 0px;
}
50% {
background-position: 500px 500px, 100px 200px, -100px 150px;
}
100% {
background-position: 500px 1000px, 200px 400px, -100px 300px;
}
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes move {
from {
top: 0;
left: 0;
}
to {
top: 1000px;
left: 10px;
}
}
@keyframes background {
0% {
background: white;
}
30% {
background: red;
}
100% {
background: blue;
}
}