-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 1.12 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
<!doctype html>
<html lang="en" id="html">
<head>
<title>jump</title>
<meta name="keywords" content="jump"/>
<meta name="description" content="jump"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script type="text/javascript" src="js/main.js"></script>
<style type="text/css">
*{margin: 0;padding:0;}
html,body{width:100%;height:100%;overflow:hidden;background:#edffd9;}
#game{width:100%;height:100%;overflow:hidden;position:absolute;top:0;left:0;z-index:10;}
canvas{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);}
#forhorview{position:absolute;font-size:0.5rem;text-align:center;line-height:100%;color:#6c6f3a;background:#edffd9;width:100%;height:100%;top:0;left:0;z-index:100;display:flex;-webkit-align-items: center;align-items: center;-webkit-justify-content: center;justify-content: center;}
</style>
</head>
<body>
<div id="game"></div>
<div id="forhorview">正在加载配置文件...</div>
</body>
</html>