-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
198 lines (150 loc) · 7.46 KB
/
index.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-------------------------------------------------
Title
-------------------------------------------------->
<title>Vehicles Racing Animation</title>
<!---------------------------------------------------
Favicon
----------------------------------------------------->
<link rel="icon" type="image/gif" href="assets/images/taxi.gif">
<!---------------------------------------------------
Link External Custom Style Sheets
----------------------------------------------------->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media-queries.css">
</head>
<body>
<!---------------------------------------------------
Wrapper Start
----------------------------------------------------->
<div class="wrapper">
<!---------------------------------------------------
Intro Box Start
----------------------------------------------------->
<div class="intro-box">
<h1 class="intro-message"> 🖐 Welcome!! <br> Enjoy 😋 the Scene</h1>
<button class="play-btn">Play Animation</button>
</div>
<!---------------------------------------------------
Intro Box End
----------------------------------------------------->
<!---------------------------------------------------
Portrait Intro Box Start
----------------------------------------------------->
<div class="portrait-intro-box">
<h1 class="portrait-message">🤩 Hey Buddy!! <br>Rotate Your Device 📟 in Landscape Mode to Enjoy Animation</h1>
</div>
<!---------------------------------------------------
Portrait Intro Box End
----------------------------------------------------->
<!---------------------------------------------------
Main Animation Frame Start
----------------------------------------------------->
<main class="main-animation-frame">
<!---------------------------------------------------
Pause Button to Pause Animation
----------------------------------------------------->
<button class="pause-btn">Pause Animation</button>
<!---------------------------------------------------
Sky Start (Clouds)
----------------------------------------------------->
<div class="sky animation-frame"></div>
<!---------------------------------------------------
Sky End (Clouds)
----------------------------------------------------->
<!---------------------------------------------------
Trees Start
----------------------------------------------------->
<div class="trees animation-frame"></div>
<!---------------------------------------------------
Trees End
----------------------------------------------------->
<!---------------------------------------------------
Vehicles Container Start
----------------------------------------------------->
<div class="vehicles-container">
<!---------------------------------------------------
Car-1
----------------------------------------------------->
<div class="car car-1">
<img src="assets/images/car-body.png" class="car-body car-body-1" alt="car">
<img class="car-left-tyre car-left-tyre-1" src="assets/images/car-wheel-left.png">
<img class="car-right-tyre car-right-tyre-1" src="assets/images/car-wheel-right.png">
</div>
<!---------------------------------------------------
Car-2
----------------------------------------------------->
<div class="car car-2">
<img src="assets/images/car-body.png" class="car-body car-body-2" alt="car">
<img class="car-left-tyre car-left-tyre-2" src="assets/images/car-wheel-left.png">
<img class="car-right-tyre car-right-tyre-2" src="assets/images/car-wheel-right.png">
</div>
<!---------------------------------------------------
Car-3
- ---------------------------------------------------->
<div class="car car-3">
<img src="assets/images/car-body.png" class="car-body car-body-3" alt="car">
<img class="car-left-tyre car-left-tyre-3" src="assets/images/car-wheel-left.png">
<img class="car-right-tyre car-right-tyre-3" src="assets/images/car-wheel-right.png">
</div>
<!---------------------------------------------------
Taxi
----------------------------------------------------->
<div class="taxi">
<img src="assets/images/taxi.gif" alt="taxi">
</div>
<!---------------------------------------------------
Bike
----------------------------------------------------->
<div class="bike bike-1">
<img src="assets/images/bike.gif" alt="Bike">
</div>
</div>
<!---------------------------------------------------
Vehicles Container End
----------------------------------------------------->
<!---------------------------------------------------
Track Start
----------------------------------------------------->
<div class="track animation-frame"></div>
<!---------------------------------------------------
Track End
----------------------------------------------------->
</main>
<!---------------------------------------------------
Main Animation Frame End
----------------------------------------------------->
</div>
<!---------------------------------------------------
Wrapper End
----------------------------------------------------->
<!---------------------------------------------------
Vehicles Sounds Start
----------------------------------------------------->
<audio>
<source src="Assets/Sounds/car-horn.mp3" type="audio/mp3">
</audio>
<audio>
<source src="Assets/Sounds/car-horn-2.mp3" type="audio/mp3">
</audio>
<audio>
<source src="Assets/Sounds/bike-sound.mp3" type="audio/mp3">
</audio> <audio>
<source src="Assets/Sounds/car-sound.mp3" type="audio/mp3">
</audio>
<!---------------------------------------------------
Vehicles Sounds Start
----------------------------------------------------->
<!--------------------------------------------------------------------------------
Javascript Cdns And Files For Icons And Other Sources And External Custom Js Files
---------------------------------------------------------------------------------->
<!---------------------------------------------------
Link External Custom Js Files
----------------------------------------------------->
<script src="js/script.js"></script>
</body>
</html>