Overview
Context
Changes
Modified single_doc/37.Eternal Evolution.html
from [6a3e73524a]
to [33a2e4b9c6].
︙ | | |
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
|
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
|
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
+
+
+
-
-
+
+
-
-
+
-
-
-
+
+
-
-
-
-
-
-
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
.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">
37.Eternal Evolution
</div>
<header id="title-block-header">
<h1 class="title">37.Eternal Evolution</h1>
</header>
<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/37.Eternal Evolution.md
from [90ddd605ec]
to [de378a6abd].
1
2
3
4
5
6
|
1
2
3
4
5
|
-
-
+
|
<div class="title">37.Eternal Evolution</div>
% 37.Eternal Evolution
这个残局具有开创性意义。
它率先引入了在残局一开始由玩家从卡组中<b>选卡</b>加入手卡的玩法。
|
Modified single_doc/README.md
from [892e160971]
to [8f6e6aefd5].
1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
|
-
-
+
-
+
|
<div class="title">游戏王残局简化版</div>
% 游戏王残局简化版
游戏王残局简化版,<b>随缘</b>更新。
<b>☞ 以下内容不够重要,可以忽略</b>
# ☞ 以下内容不够重要,可以忽略
http://chiselapp.com/user/kkk/repository/canju
|
Modified single_doc/卡组测试教程.md
from [c8f021b992]
to [d8d9b05990].
1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
10
|
+
|
<div class="title">卡组测试教程</div>
<details>
<summary>
前言
</summary>
有人想用残局,进行卡组<b>测试</b>。
|
︙ | | |