Skip to content

Commit cc24057

Browse files
committed
添加了404页面小游戏《圈小猫》
1 parent ef7c56b commit cc24057

File tree

6 files changed

+49745
-1
lines changed

6 files changed

+49745
-1
lines changed
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<!-- <title>3_1_phaser-catch-the-cat.html</title> -->
5+
<title>Catch The Cat</title>
6+
7+
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
8+
<meta http-equiv="description" content="this is my page">
9+
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
10+
11+
<style>
12+
* {
13+
padding: 0;
14+
margin: 0
15+
}
16+
17+
body {
18+
background-color: #eeeeee;
19+
}
20+
/* 游戏画布样式 */
21+
#catch-the-cat {
22+
width: 100%;
23+
margin-top: 32px;
24+
text-align: center;
25+
}
26+
27+
#info,#returnHome {
28+
text-align: center;
29+
/* border: solid 1px grey; */
30+
margin-top: 10px;
31+
}
32+
33+
#info p{
34+
font-size: 25px;
35+
}
36+
37+
38+
#returnHome a {
39+
text-decoration: none;
40+
color: #5bace2;
41+
font-size: 25px;
42+
line-height: 30px;
43+
}
44+
45+
#returnHome a:HOVER {
46+
text-decoration: underline;
47+
color: #0099FF;
48+
}
49+
50+
</style>
51+
</head>
52+
<body>
53+
<!-- 1.404页面提示信息 -->
54+
<div id="info">
55+
<p>温馨提醒:您所访问的页面不存在或者已删除。</p>
56+
<p>游戏《圈小猫》</p>
57+
</div>
58+
59+
<!-- 2.游戏画布 -->
60+
<!-- 首先引入游戏框架,详情可了解:http://phaser.io-->
61+
<script src="./js/phaser.min.js"></script>
62+
<!-- 然后引入游戏代码 -->
63+
<script src="./js/catch-the-cat.js"></script>
64+
<div id="catch-the-cat"></div>
65+
<script>
66+
window.game = new CatchTheCatGame({
67+
w : 11,
68+
h : 11,
69+
r : 20,
70+
backgroundColor : 0xffffff,
71+
parent : 'catch-the-cat',
72+
statusBarAlign : 'center',
73+
/* credit : 'github.com/404pages' */
74+
});
75+
</script>
76+
77+
<!-- 3.返回主页 -->
78+
<div id="returnHome">
79+
<img src="./images/home2.png" alt="home" width="30px" height="30px" />
80+
<a href="/404pages/index.html" title="返回首页">&nbsp;返回首页</a>
81+
</div>
82+
83+
84+
<!-- 4.右上角github的链接条 -->
85+
<a href="https://github.com/yansheng836/404pages" class="github-corner"
86+
aria-label="View source on GitHub">
87+
<svg width="80" height="80" viewBox="0 0 250 250"
88+
style="fill:#151513; color:#eee; position: absolute; top: 0; border: 0; right: 0;"
89+
aria-hidden="true">
90+
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
91+
<path
92+
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
93+
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
94+
<path
95+
d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
96+
fill="currentColor" class="octo-body"></path></svg>
97+
</a>
98+
<style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
99+
</body>
100+
</html>

0 commit comments

Comments
 (0)