forked from neverCollapse/oprilzeng.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (89 loc) · 3.95 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Psychologist</title>
<link href="style/main.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="meta/apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0, maximum-scale=1, user-scalable=no, minimal-ui">
<meta property="og:title" content="2048 game"/>
<meta property="og:site_name" content="2048 game"/>
<style type="text/css">
.content-width {MARGIN: auto;WIDTH: 200px;}
.content-width img{MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:expression(this.width > 200 ? "200px" : this.width)!important;}
</style>
</head>
<body>
<div class="container">
<div class="heading">
<h1 class="title" style="text-align:center">Psychologist</h1>
<p><br><br></p>
<p align="center"><img src="images/erweima.jpg" style="width: 150px; height: 150px;" /><br>关注我们吧!</p>
<div class="scores-container">
<div class="score-container">0</div>
<div class="best-container">0</div>
</div>
</div>
<p class="game-intro">合并方块,努力到达<strong> 津巴多 </strong> 吧!</p> <div class="game-container">
<div class="game-message">
<p></p>
<div class="lower">
<a class="retry-button">来多一次?</a>
<div class="score-sharing"></div>
</div>
</div>
<div class="grid-container">
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
<div class="grid-row">
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
<div class="grid-cell"></div>
</div>
</div>
<div class="tile-container">
</div>
</div>
<p class="game-explanation">
<strong class="important">规则:</strong> 使用 <strong>上下左右键</strong> 移动方块(触屏设备请直接滑动手指),相同的两个心理学家合并后会变成 <strong>更新的一个</strong>。
</p>
<hr>
<p>Powered by <a href="https://github.com/jokerdawn/2048">JD</a>. Fork from <a href="https://github.com/oprilzeng/oprilzeng.github.io">Oprilzeng</a>.<br>If you have some question about 2048 ,<a href="mailto:jdse88@gmail.com">contact me</a>.</p>
<p align="center"><img src="images/youxinren.png" style="width: 150px; height: 150px;" />友心人出品</p>
</div>
<script src="js/animframe_polyfill.js"></script>
<script src="js/keyboard_input_manager.js"></script>
<script src="js/html_actuator.js"></script>
<script src="js/grid.js"></script>
<script src="js/tile.js"></script>
<script src="js/local_score_manager.js"></script>
<script src="js/game_manager.js"></script>
<script src="js/application.js"></script>
<!-- <script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F0e3c8d0a687bea8b39440e15b88cb974' type='text/javascript'%3E%3C/script%3E"));
</script> -->
<!--img border="0" src="style/2048.jpg" width="0" height="0"><img border="0" src="style/1024.jpg" width="0" height="0"-->
</body>
</html>