forked from devloop01/color-collision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Red Blue</title>
<script src="js/splitting.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="start-screen">
<div class="game-data">
<span class="name"><span>Color</span> <span>Collision</span></span>
</div>
<span class="info">
<span class="highlight _1">FOCUS</span> is the weapon.
Don't make the wrong move.
Tap / click to change the color and save the central balls.
Because if the central balls don't stay alive <span class="highlight _2">YOU DIE</span>.
Better play <span class="highlight _3">SAFE</span> and make a new highscore.
</span>
<button class="btn play">PLAY</button>
</div>
<span class="retry-text hide" data-splitting>Game Over!</span>
<button class="retry-btn hide" data-splitting>RETRY</button>
<canvas data-canvas></canvas>
<script src="js/game.js"></script>
</body>
</html>