-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
code.html
156 lines (143 loc) · 4.94 KB
/
code.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
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<title class="lang" key="code"></title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" href="images/logo.svg" type="image/x-icon" />
<link rel="apple-touch-icon" href="images/logo.png" />
<meta name="google-site-verification" content="s3hE2D_rJuuUUj4rVvWBADMHqHqiSM-bQh80mnwzDMA" />
<style>
.xl0 {
border: 0px solid black;
}
.xl1 {
background: yellow;
}
.xl2 {
background: #0070C0;
}
.xl3 {
background: red;
}
.xl4 {
background: #33CC33;
}
.xl5 {
background: #FF9900;
}
.xl6 {
background: white;
}
.input {
text-align: center;
font-size: 4vmin;
font-family: Tahoma, sans-serif;
width: 100%;
height: 100%;
border: none;
padding: 0px 0px 0px 0px;
color: black;
}
table {
border-spacing: 0;
border-spacing: 0;
border-collapse: collapse;
margin: auto;
border-left: 0px solid gray;
border-top: 0px solid gray;
}
td {
border: 2px solid black;
width: min(8vmin, 45px);
height: min(8vmin, 45px);
white-space: nowrap;
font-family: Tahoma;
padding: 0px;
text-align: center;
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7X9DPS593M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-7X9DPS593M');
</script>
<body>
<div class="allscreen">
<div id="wrapper">
<header id="header">
<div class="inner">
<a href="./" class="logo">
<span class="symbol"><img src="images/logo.svg" alt="" /></span><span class="title">blddb</span>
</a>
<div class="language">
<div class="status_circle">
</div>
<div class="dropdown-content">
<div class="status_circle" data-lang="zh">简体中文</div>
<div class="status_circle" data-lang="en">English</div>
<div class="status_circle" data-lang="ja">日本語</div>
</div>
</div>
</div>
</header>
<div id="main">
<div class="inner">
<header>
<h1 style="text-align:center" class="lang" key="code"></h1>
</header>
<p>
<sentence class="lang" key="codeLetterSetting"></sentence>
<button type="button" onclick="setChichu()" class="lang" key="codeChichu"></button>
<button type="button" onclick="setSpeffz()" class="lang" key="codeSpeffz"></button>
</p>
<div>
<sentence class="lang" key="codeOrientationSetting"></sentence>
<select style="width:5.5em" id="codeinput" onchange="setColor(0)">
<option class="lang" key="code1" value="1"></option>
<option class="lang" key="code2" value="2"></option>
<option class="lang" key="code3" value="3"></option>
<option class="lang" key="code4" value="4"></option>
<option class="lang" key="code5" value="5"></option>
<option class="lang" key="code6" value="6"></option>
<option class="lang" key="code7" value="7"></option>
<option class="lang" key="code8" value="8"></option>
<option class="lang" key="code9" value="9"></option>
<option class="lang" key="code10" value="10"></option>
<option class="lang" key="code11" value="11"></option>
<option class="lang" key="code12" value="12"></option>
<option class="lang" key="code13" value="13"></option>
<option class="lang" key="code14" value="14"></option>
<option class="lang" key="code15" value="15"></option>
<option class="lang" key="code16" value="16"></option>
<option class="lang" key="code17" value="17"></option>
<option class="lang" key="code18" value="18"></option>
<option class="lang" key="code19" value="19"></option>
<option class="lang" key="code20" value="20"></option>
<option class="lang" key="code21" value="21"></option>
<option class="lang" key="code22" value="22"></option>
<option class="lang" key="code23" value="23"></option>
<option class="lang" key="code24" value="24"></option>
</select>
</div>
<br />
<table id="table">
</table>
<br />
</div>
</div>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/setcode.js"></script>
<script src="assets/js/language.js"></script>
</body>
</html>