-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (52 loc) · 849 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.game {
width: 600px;
height: 200px;
border-bottom: 1px solid #000;
margin: auto;
}
#dino {
width: 50px;
height: 50px;
background-image: url(img/95971_Dinosaur_Game.png);
background-size: 50px 50px;
position: relative;
top: 150px;
}
#cactus {
width: 20px;
height: 40px;
background-image: url(img/861783.png);
background-size: 20px 40px;
position: relative;
top: 110px;
left: 580px;
animation: cactusMuv 1.5s infinite linear;
}
@keyframes cactusMuv {
0% {
left: 580px;
}
100% {
left: -20px;
}
}
.jump {
animation: jump 0.3s linear;
}
@keyframes jump {
0% {
top: 150px;
}
30% {
top: 130px;
}
50% {
top: 80px;
}
80% {
top: 130px;
}
100% {
top: 150px;
}
}