Overview
Context
Changes
Modified single_doc/二解.html
from [ccd5f47861]
to [b7ef41bf26].
︙ | | |
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
+
+
+
+
+
+
|
h1,h2,h3,h4,h5,h6 {
font-size: 1.5em;
color: #3F5770;
border-bottom: 0.1em solid #666666;
margin: 1.2em 0em;
}
a {
list-style: none;
border-right: 0.3em solid #5183C466;
border-left: 0.3em solid #5183C466;
padding: 0.2em 0.4em;
margin-bottom: 0.2em;
margin-top: 0.3em;
background-color: white;
text-decoration-color: blue;
}
a:visited {
color: blue;
text-decoration-color: white;
}
|
︙ | | |
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
|
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
+
-
-
+
+
-
-
+
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
.title {
background-color: white;
font-size: 2em;
text-align: center;
}
b {
background-color: white;
}
a {
target: _blank;
list-style: none;
border-right: 0.3em solid #5183C466;
border-left: 0.3em solid #5183C466;
padding: 0.2em 0.4em;
margin-bottom: 0.2em;
margin-top: 0.3em;
}
details > summary {
list-style: none;
border-right: 0.3em solid #5183C466;
border-left: 0.3em solid #5183C466;
padding: 0.2em 0.4em;
margin-bottom: 0.2em;
margin-top: 0.3em;
}
details > summary:active {
transform:
rotateX(38deg)
translateY(7px);
}
pre {
background: #f6f6f6;
border-left: 0.5em solid #ccc;
padding: 0.4em;
border-radius: 0.2em;
}
pre:active {
transform:
rotateX(38deg)
translateY(7px);
}
code {
font-family: "Verdana";
}
button {
background: #ffffff;
color: #20894d;
}
button:active {
transform:
rotateX(38deg)
translateY(7px);
}
</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="title">
二解
</div>
<header id="title-block-header">
<h1 class="title">二解</h1>
</header>
<p>「二解」指超越了原残局作者设定血量的解局方法。</p>
<p>一般情况下,残局设定血量就是目前最优解的解局血量。</p>
<p>如果出现了二解,就表明残局设定血量<b>需要更改</b>了。</p>
<script>
document.onmouseup = function(event) {
var 元素 = event.target
document.onclick = function(event) {
var target = event.target
if (元素.tagName == "PRE"
|| 元素.tagName == "CODE") {
if (target.tagName == "PRE"
|| target.tagName == "CODE") {
var 文本 = 元素.textContent
navigator.clipboard.writeText(文本)
if (window.getSelection().toString() !== "") {
}
}
return
}
document.addEventListener('touchend', function(event) {
var target = event.target;
if (target.tagName == "PRE" || target.tagName == "CODE") {
var range = document.createRange();
range.selectNodeContents(target);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
var successful = document.execCommand('copy');
target.removeAttribute('contenteditable');
var successful = document.execCommand("copy");
target.removeAttribute("contenteditable");
window.getSelection().removeAllRanges();
}
});
}
}
目录列表 = document.getElementsByTagName("details")
function 展开或收起() {
if (目录列表[0].open == true) {
for (i = 0;
i < 目录列表.length;
i++) {
目录列表[i].open = false;
}
}
else {
for (i = 0;
i < 目录列表.length;
i++) {
目录列表[i].open = true;
}
}
}
</script>
</body>
</html>
|
Modified single_doc/特殊凡骨.md
from [d67b0be85d]
to [4baa2d90bf].
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
|
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
|
-
-
+
-
-
-
-
-
+
+
-
-
-
+
-
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
+
-
-
-
-
+
+
-
-
-
-
-
-
+
+
-
|
<div class="title">特殊凡骨</div>
% 特殊凡骨
<details>
<summary>
灵摆
</summary>
# 灵摆
1. 火蛋白石头龙头领
1. 曼陀林草龙
1. <b>闪光之骑士</b>
1. 铜锣龙
</details>
<b>☞ 以下内容不够重要,可以忽略</b>
# ☞ 以下内容不够重要,可以忽略
<details>
<summary>
同调
</summary>
# 同调
1. 自然狮面草
1. 废铁死亡恶魔
1. <b>大地之骑士 盖亚骑士</b>
</details>
<details>
<summary>
超量
</summary>
# 超量
1. 觉醒的勇士 魔蜥义豪
1. <b>宝石骑士·珍珠</b>
</details>
<details>
<summary>
连接
</summary>
# 连接
1. 天威之鬼神
1. <b>电影之骑士 盖亚剑士</b>
1. 流量幽灵
1. LAN 喙嘴龙
1. 天威之拳僧
</details>
<b>☞ 以下内容不够重要,可以忽略</b>
# ☞ 以下内容不够重要,可以忽略
<details>
<summary>
仪式
</summary>
# 仪式
很多。
</details>
<details>
<summary>
融合
</summary>
# 融合
很多。
</details>
|