-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (100 loc) · 1.96 KB
/
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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
*{
margin: 0;
padding: 0;
}
body{
overflow: hidden;
/* animation: shakeBody linear 6s infinite; */
}
.sky{
height: 100vh;
width:100vw;
background-image: url(background.jpg);
background-repeat: no-repeat;
position: absolute;
animation: shakeSky linear 6s infinite;
}
.trees{
height: 100vh;
width: 100%;
background-image: url(trees.png);
background-size: cover;
position: absolute;
}
.track{
height: 60vh;
width: 800vw;
background-image: url(track.png);
background-repeat: repeat-x;
position: absolute;
top: 88vh;
animation: carMove linear 6s infinite;
}
.car{
height: 100px;
width : 380px;
background-image: url(car_body.png);
background-size: cover;
background-repeat: no-repeat;
position: absolute;
left: 444px;
bottom: 18px;
animation: shake linear .3s infinite;
}
.wheel1 img{
width: 77px;
position: relative;
top: 30px;
left: 44px;
animation: wheelRotation linear .16s infinite;
}
.wheel2 img{
width: 77px;
position: relative;
top: -43px;
left: 234px;
animation: wheelRotation linear .16s infinite;
}
@keyframes wheelRotation{
100%{
transform: rotate(360deg);
}
}
@keyframes carMove{
100%{
transform: translateX(-500vw);
}
}
@keyframes shake{
0%{
transform: translateY(-5px); /* translate Y isliye taaki car ko upar aur neeche ghuma sake */
}
50%{
transform: translateY(5px);
}
100%{
transform: translateY(-5px);
}
}
@keyframes shakeBody{
0%{
transform: translateY(-50px); /* translate Y isliye taaki car ko upar aur neeche ghuma sake */
}
50%{
transform: translateY(50px);
}
100%{
transform: translateY(-50px);
}
}
@keyframes shakeSky{
0%{
transform: translateY(-50px);
}
50%{
transform: translateY(50px);
}
100%{
transform: translateY(-50px);
}
}