-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path503.html
More file actions
39 lines (30 loc) · 837 Bytes
/
503.html
File metadata and controls
39 lines (30 loc) · 837 Bytes
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
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>师傅!师傅!503了呢!</title>
<style>
#game_div, p {
width: 500px;
margin: auto;
margin-top: 100px;
margin-left: 65%;
}
body{
background-image: url(./assets/dino_girl.jpg);
background-size: 100%, 100%;
background-repeat:no-repeat;
}
</style>
<script type="text/javascript" src="phaser.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div style="position: absolute;z-index: 2;top: 0%;left: 10%;">
<h1 style="font-size: 75px;">503 Service Unavailable</h1>
<h1 style="font-size: 75px;">网站维护中。。。。</h1>
</div>
<div id="game_div"> </div>
<p style="color: aliceblue;">请按“空格键”开始游戏</p>
</body>
</html>