-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Flying 2048</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>Flying 2048</h1>
<p>
Aim: 2 + 2 + 4 + 8 + ... + 2048<br />
Movement: arrows<br />
Author: <a href="http://github.com/hermione521">Gan Yue</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>
<script type="text/javascript" src="js/three.min.js"></script>
<script type="text/javascript" src="js/flying2048.js"></script>
</body>
</html>