-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·38 lines (34 loc) · 1.28 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>
<head>
<title>Chase</title>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<audio id="audio_bad" src="music/bad.mp3" preload="auto"></audio>
<audio id="audio_score" src="music/score.mp3" preload="auto"></audio>
<audio id="audio_win" src="music/win.mp3" preload="auto"></audio>
<audio id="audio_move" src="music/move.mp3" preload="auto"></audio>
<div id="menu">
<h1>Chase</h1>
<p>
Aim: collect RIGHT items to find your true love.<br />
Movement: arrows<br />
Author: <a href="http://github.com/hermione521">Firing Committee</a><br />
Supported by: <a href="http://threejs.org/">Three.js</a><br />
Learn from: <a href="https://github.com/fridek/Threejs-Tetris-Tutorial">Threejs-Tetris-Tutorial</a><br />
Music: <a href="http://taira-komori.jpn.org/freesounden.html">Taira Komori's</a>
</p>
<button id="play_button">Start</button>
</div>
<div id="points">
<h1>0</h1>
</div>
<div id="you-win">You Win!</div>
<div id="you-lose">You Lose!</div>
<div id="popup"></div>
<script type="text/javascript" src="js/three.min.js"></script>
<script type="text/javascript" src="js/chase.js"></script>
</body>
</html>