-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.06 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.06 KB
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
<!DOCTYPE html>
<html>
<head>
<title>CreateJS Demo</title>
<meta charset="utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximun-scale=1.0, user-scalable=no" >
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telphone=no">
<meta name="twcClient" content="false">
<link rel="stylesheet" type="text/css" href="css/app.css">
</head>
<body>
<!-- 游戏舞台 -->
<canvas id="canvas"></canvas>
<!-- 游戏设置弹窗 -->
<div id="gameSettingBtn" class="setting-btn"></div>
<div id="gameSettingCon" class="setting-con">
<h3>游戏设置</h3>
<p>
<label>背景音效:</label>
<input type="range" id="bgVolum" value="0.8" min="0" max="1.0" step="0.1">
<i id="bgVolumValue">80</i>
</p>
<span id="closeSettingBtn">X</span>
</div>
<!-- 载入js -->
<script type="text/javascript" src="js/createjs-2013.12.12.min.js"></script>
<script type="text/javascript" src="js/gameInit.js"></script>
</body>
</html>