forked from TJUGERKFER/Touhou-Character-Identifior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.old.html
147 lines (135 loc) · 4.41 KB
/
index.old.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<style>
* {
font-family: "Microsoft Yahei UI", "Segoi UI";
text-align: center;
}
body {
padding: 0;
margin: 0;
}
#background-image-container {
position: fixed;
margin: 0px auto;
padding: 0px;
width: 100%;
height: 100%;
background: url(https://i.loli.net/2020/02/16/w1qFDnAcyQ7gzpI.png);
filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale')";
-moz-background-size: 100% 100%;
background-size: 100% 100%;
}
#pagetitle {
font-size: 36px;
width: 100%;
margin-top: 75px;
color: rgb(67, 120, 150);
}
#copyright {
font-size: 18px;
position: fixed;
width: 100%;
bottom: 4px;
box-sizing: border-box;
overflow: hidden;
color: rgba(67, 120, 150, 0.9);
line-height: 5px;
}
.button {
line-height: 40px;
border: 1px solid #66c2ff;
border-radius: 25px 25px 25px 25px;
display: inline-block;
margin: auto;
margin-top: 3px;
padding: auto;
padding-top: 3px;
width: 80px;
height: 48px;
background-color: rgba(46, 158, 250, 0.1);
text-align: center;
user-select: none;
}
.button:hover {
background-color: rgba(46, 158, 250, 0.4);
}
#reset {
width: 90px;
margin-top: 7px;
}
#btnset {
display: block;
margin: auto;
padding: auto;
}
#dontknowbtn {
width: 120px;
}
</style>
<title>车万角色鉴定系统</title>
<script src="identifior.old.js"></script>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
reload();
});
</script>
<body>
<!--[if lt IE 9]>
<div class="aya-hate-stupid-ie">
<div class="ie-container">
<h1>Error: IE Browser detected | 您使用的浏览器过低,被城管踢出了幻想乡</h1>
<p>
“都2020年了您还在使用IE?? -射命丸文“
</p>
<a href="https://browsehappy.com" target="_blank">
您可以点击此处,下载Chrome/Firefox后再次尝试跨越结界。
</a>
</div>
</div>
<![endif]-->
<div id="background-image-container">
<div id="pagetitle">神奇车万角色鉴定系统</div>
<h4 id="subtitle">没见过的的东方角色?几个问题让你轻松初识!</h4>
<p id="q">问题:</p>
<p id="question"> </p>
<br />
<div id="btnset">
<div class="button" id="yesbtn" onclick="yes()">是</div>
<div class="button" id="dontknowbtn" onclick="noidea()">不知道/不确定</div>
<div class="button" id="nobtn" onclick="no()">否</div><br>
<div class="button" id="reset" onclick="reload()">重新开始</div>
</div>
<div>
<p id="showbest"></p>
<p id="showother"></p>
<p id="wikitip"></p>
<a id="firstpage" href="http://thbwiki.cc"></a>
<a id="secondpage" href="http://thbwiki.cc"></a>
<a id="thirdpage" href="http://thbwiki.cc"></a>
<br />
<br />
<br />
<div id="copyright">
<p>Powered By <a href="http://tjbaka.top">TJUGERKFER</a></p>
<p> 技术支持:<a href="https://www.winsloweric.cn">WinslowEric</a> BbAa</p>
<p id="total"></p>
</div>
</div>
</div>
<script>
if (/AppleWebKit.*Mobile/i.test(navigator.userAgent) ||
/Android/i.test(navigator.userAgent) ||
/BlackBerry/i.test(navigator.userAgent) ||
/IEMobile/i.test(navigator.userAgent) ||
(/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/
.test(navigator.userAgent))) {
if (/iPad/i.test(navigator.userAgent)) {
window.location.href = "wap.html";
} else {
window.location.href = "wap.html";
}
} else {
}
</script>
</body>