-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="keywords" content="canvas,canvas游戏,H5游戏,微信飞机大战">
<meta name="description" content="微信飞机大战">
<!-- IOS start -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="微信飞机大战">
<!-- IOS end -->
<!-- Android start -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="微信飞机大战">
<meta name="theme-color" content="#c3c8c9">
<!-- Android end -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="apple-touch-icon" href="./favicon/apple-touch-icon.png">
<link rel="icon" href="./favicon/favicon.ico">
<link rel="stylesheet" href="./css/index.css">
<title>微信飞机大战</title>
</head>
<body>
<div id="canvasContainer">
<canvas id="bg"></canvas>
<canvas id="ui"></canvas>
<canvas id="scene"></canvas>
<canvas class="no-event" id="main"></canvas>
</div>
<script src="./js/index.js" type="module"></script>
</body>
</html>