-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (46 loc) · 1.82 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="#" type="image/x-icon">
<title>3d - самолет</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<input id="start" class="visually-hidden" type="checkbox">
<label for="start" class="start-screen">START GAME</label>
<div class="wrapper">
<audio src="calambur.mp3" controls loop class="sound" tabindex="0">PLAY</audio>
<label for="fire">Fire</label>
<input id="fire" type="checkbox">
<h1>3D AVIATOR only HTML & CSS</h1>
<p class="row-controls">управление: <kbd>W, S, A, D, Q, E</kbd></p>
<div class="jet">
<div class="jet__body">
<!-- стороны -->
<div class="jet__side jet__side--left">····</div>
<div class="jet__side jet__side--right">····</div>
<div class="jet__side jet__side--back"></div>
<div class="jet__side jet__side--front"></div>
<div class="jet__side jet__side--top"></div>
<div class="jet__side jet__side--bottom"></div>
<!-- хвост -->
<div class="jet__side jet__side--tail">X</div>
<!-- крылья -->
<div class="jet__side jet__side_wing jet__side_wing--left">★
<div class="jet__rocket jet__rocket--left"></div>
</div>
<div class="jet__side jet__side_wing jet__side_wing--right">★
<div class="jet__rocket jet__rocket--right"></div>
</div>
<!-- шасси -->
<div class="jet__side jet__side_chassis jet__side_chassis--front"></div>
<div class="jet__side jet__side_chassis jet__side_chassis--left"></div>
<div class="jet__side jet__side_chassis jet__side_chassis--right"></div>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>