-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (23 loc) · 1011 Bytes
/
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
<!DOCTYPE html>
<html lang="ja">
<head>
<title>サンプルミニゲーム</title>
<meta charset="utf-8">
<!-- for SmartPhone -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0 user-scalable=no">
<!-- for iPhone -->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="57x57" href="icon_57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="icon_72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="icon_114.png" />
<link rel="apple-touch-icon" sizes="180x180" href="icon_180.png" />
</head>
<body style="background-color:black; text-align:center;">
<canvas id="canvas" style="position:absolute; top:0; right:0; bottom:0; left:0; margin:auto;"></canvas>
<!-- WWS ゲームシステム プログラム -->
<script src="WWS.js"></script>
<!-- ゲームプログラム -->
<script src="stg.js"></script>
<noscript>JavaScriptをONにして起動して下さい</noscript>
</body>
</html>