-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclient.xhtml
59 lines (59 loc) · 2.53 KB
/
client.xhtml
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
<!DOCTYPE html>
<html xml:lang="zh-Hans" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>wei7就是围棋</title>
<meta name="description" content="在线下围棋,在线学围棋,在线看棋谱,无需安装任何软件。" />
<meta name="keywords" content="围棋, wei7, 对弈, 下棋, 棋牌, 棋谱, 打谱, 下围棋, 围棋教程,
李昌镐, 聂卫平, 吴清源, 古力, 常昊, 李世石" />
<meta name="viewport" content="width=device-width, initial-scale=1.0,
minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="shortcut icon" href="logo-16.ico" />
<style type="text/css"><![CDATA[
html {
font-family: Arial, 黑体;
line-height: 1.35;
overflow: hidden;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
body {
margin: 0;
background-color: rgb(224,224,224);
}
table {
border-collapse: collapse;
}
table td {
border-width: 0;
padding: 0;
}
body>* {
position: absolute; /* 本来用fixed,但Chrome 17渲染有bug,且iOS中点击会有延迟 */
}
#info1, #info2 {
overflow: hidden;
}
]]></style>
<script type="text/javascript" src="client.js" />
<script type="text/javascript"><![CDATA[
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19880790-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') +
'.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
]]></script>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="root" viewBox="-512 -512 1024 1024" />
<!-- 如果把info1和info2放在svg的前面(即呈现在svg的后面),则在Windows Store的IE 10中,
右键点空白处后无法调出地址栏,因为IE把svg当作图片。 -->
<div id="info1" />
<div id="info2" />
</body>
</html>