-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (52 loc) · 802 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
58
.game{
width: 600px;
height: 200px;
border: 1px solid black;
margin: auto;
}
#hero{
width: 50px;
height: 50px;
background-image: url(img/hero.png);
background-size: 50px 50px;
position: relative;
top: 150px;
}
.jump{
animation: jump 0.3s linear;
}
@keyframes jump{
0% {
top: 150px;
}
30% {
top: 130px;
}
50% {
top: 80px;
}
80% {
top: 130px;
}
100% {
top: 150px;
}
}
#cork{
width: 20px;
height: 40px;
position: relative;
top: 110px;
left: 560px;
background-image: url(img/cork.png);
background-size: 20px 40px;
animation: block 1s infinite linear;
}
@keyframes block{
0%{
left: 560px;
}
100%{
left: -40px;
}
}