-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcat.html
More file actions
23 lines (23 loc) · 677 Bytes
/
cat.html
File metadata and controls
23 lines (23 loc) · 677 Bytes
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">
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>圈小猫</title>
<style>
* {
margin: 0;
padding: 0;
font-size: 0;
}
</style>
</head>
<body>
<div id="catch-the-cat"></div>
<script src="/phaser.min.js"></script>
<script src="/catch-the-cat.js"></script>
<script>
window.game = new CatchTheCatGame({w:11,h:11,r:20,backgroundColor:16777215,parent:"catch-the-cat",statusBarAlign:"center",credit:"www.pangjunpeng.com"})
</script>
</body>
</html>