forked from romadox/zine-arranger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfolding.html
409 lines (367 loc) · 15.6 KB
/
folding.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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Zine Arranger! Folding Instructions</title>
</head>
<style>
* {
image-resolution: 300dpi;
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: #DDD;
}
p {
margin: 5px;
font-family: "Garamond", "Georgia", serif;
}
h1 {
font-family: "Garamond", "Georgia", serif;
font-size: 36pt;
font-weight: bold;
}
ol {
width: 90%;
flex: 1;
}
.header {
margin: 12px;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.header-item {
width: 90%;
margin: 8px;
display: flex;
flex-direction: row;
align-items: left;
}
button {
margin: 10px;
padding: 10px;
}
input {
margin: 5px 5px 0px 15px;
}
img {
margin: 15px 0px 0px 0px;
}
</style>
<section class="header"><h1>Folding Instructions!</h1>
<p>Select the layout settings for your zine to view instructions.</p>
<p><a href="index.html">Zine Arranger</a></p></section>
<section class="header">
<section id="layout" class="header-item">
<section id="opt-zinesize">
<p>Zine Size</p>
<input type="radio" id="zs-mini" name="zsize" checked="true" onchange="refreshSpecs()"></input>
<label for="zs-mini">Eighth (Mini)</label><br>
<input type="radio" id="zs-qtr" name="zsize" onchange="refreshSpecs()"></input>
<label for="zs-qtr">Quarter</label><br>
<input type="radio" id="zs-half" name="zsize" onchange="refreshSpecs()"></input>
<label for="zs-half">Half</label><br>
</section>
<section id="opt-duplex">
<p>Print on:</p>
<input type="radio" id="dx-double" name="duplex" onchange="refreshSpecs()"></input>
<label for="dx-double">Both Sides</label><br>
<input type="radio" id="dx-single" name="duplex" checked="true" onchange="refreshSpecs()"></input>
<label for="dx-single">One Side</label><br>
</section>
<section id="opt-orient">
<p>Zine Orientation:</p>
<input type="radio" id="ori-portrait" name="paper-orient" checked="true" onchange="refreshSpecs()"></input>
<label for="ori-portrait">Portrait</label><br>
<input type="radio" id="ori-landscape" name="paper-orient" onchange="refreshSpecs()"></input>
<label for="ori-landscape">Landscape</label><br>
</section>
<section id="opt-spine">
<p>Booklet spine:</p>
<input type="radio" id="spine-side" name="spine-orient" checked="true" onchange="refreshSpecs()"></input>
<label for="spine-side">Side</label><br>
<input type="radio" id="spine-top" name="spine-orient" onchange="refreshSpecs()"></input>
<label for="spine-top">Top</label><br>
</section>
</section>
</section>
<section class="header" id="e1ps" style="display:none">
<h1>Eighth Size (Mini)</h1>
<p>Single-Sided / Portrait / Side-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half (hamburger style).</li>
<li>Cut along the top of the back cover, to create a slit in the middle of the paper.</li>
<li>Unfold, then fold in half (hotdog style).</li>
<li>Push the two sides in, allowing the middle pages to split out into a diamond.</li>
<li>Starting with the back cover, fold the pages together until the back is opposite the front.</li>
</ol>
<img src="img/folding-e1ps.png"></img>
</section>
<section class="header" id="e1pt" style="display:none">
<h1>Eighth Size (Minizine)</h1>
<p>Single-Sided / Portrait / Top-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom left.</li>
<li>On the top row: Cut between the first and second page in the row, and between the third and fourth page in the row.</li>
<li>On the bottom: Cut between the second and third page in the row.</li>
<li>Starting with the top right, fold down so the pages are face-to-face, then over so the pages are back-to-back.</li>
<li>Repeat this pattern until you get to the back cover, which folds over the rest of the pages.</li>
<li>Staple the middle spine to add some support.</li>
</ol>
<img src="img/folding-e1pt.png"></img>
</section>
<section class="header" id="e1ls" style="display:none">
<h1>Eighth Size (Minizine)</h1>
<p>Single-Sided / Landscape / Side-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>On the left column: Cut the seam beneath the top page, and the seam above the bottom page.</li>
<li>On the right column: Cut the seam between the middle two pages.</li>
<li>Starting with the top left, fold over so the pages are face-to-face, then down so the pages are back-to-back.</li>
<li>Repeat this pattern until you get to the back cover, which folds over the rest of the pages.</li>
<li>Staple the middle spine to add some support.</li>
</ol>
<img src="img/folding-e1ls.png"></img>
</section>
<section class="header" id="e1lt" style="display:none">
<h1>Eighth Size (Minizine)</h1>
<p>Single-Sided / Landscape / Top-Fold</p><br><br>
<ol><li>Hold the page so the front cover is at the bottom right.</li>
<li>Fold in half (hamburger style).</li>
<li>Cut along the top of the back cover, to create a slit in the middle of the paper.</li>
<li>Unfold, then fold in half (hotdog style).</li>
<li>Push the two sides in, allowing the middle pages to split out into a diamond.</li>
<li>Starting with the back cover, fold the pages together until the back is opposite the front.</li>
</ol>
<img src="img/folding-e1lt.png"></img>
</section>
<section class="header" id="e2ps" style="display:none">
<h1>Eighth Size (16-Page Mini)</h1>
<p>Double-Sided / Portrait / Side-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Fold in half left-to-right again, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine, then cut around the outside edges to free up the pages.</li>
</ol>
<img src="img/folding-e2ps.png"></img>
</section>
<section class="header" id="e2pt" style="display:none">
<h1>Eighth Size (16-Page Mini)</h1>
<p>Double-Sided / Portrait / Top-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Fold in half left-to-right again, keeping the front visible.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine, then cut around the outside edges to free up the pages.</li>
</ol>
<img src="img/folding-e2pt.png"></img>
</section>
<section class="header" id="e2ls" style="display:none">
<h1>Eighth Size (16-Page Mini)</h1>
<p>Double-Sided / Landscape / Side-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Fold in half top-to-bottom again, keeping the front visible.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine, then cut around the outside edges to free up the pages.</li>
</ol>
<img src="img/folding-e2ls.png"></img>
</section>
<section class="header" id="e2lt" style="display:none">
<h1>Eighth Size (16-Page Mini)</h1>
<p>Double-Sided / Landscape / Top-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Fold in half top-to-bottom again, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine, then cut around the outside edges to free up the pages.</li>
</ol>
<img src="img/folding-e2lt.png"></img>
</section>
<section class="header" id="q1ps" style="display:none">
<h1>Quarter Size</h1>
<p>Single-Sided / Portrait / Side-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine.</li>
</ol>
<img src="img/folding-q1ps.png"></img>
</section>
<section class="header" id="q1pt" style="display:none">
<h1>Quarter Size</h1>
<p>Single-Sided / Portrait / Top-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine.</li>
</ol>
<img src="img/folding-q1pt.png"></img>
</section>
<section class="header" id="q1ls" style="display:none">
<h1>Quarter Size</h1>
<p>Single-Sided / Landscape / Side-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Fold in half left-to-right, keeping the spine visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine.</li>
</ol>
<img src="img/folding-q1ls.png"></img>
</section>
<section class="header" id="q1lt" style="display:none">
<h1>Quarter Size</h1>
<p>Single-Sided / Landscape / Top-Fold</p><br><br>
<ol><li>Hold the page with the front cover at the bottom right.</li>
<li>Fold in half left-to-right, keeping the front visible.</li>
<li>Fold in half top-to-bottom, keeping the front visible.</li>
<li>Repeat for any additional sheets, nesting them in the middle fold of each previous sheet.</li>
<li>Staple the spine.</li>
</ol>
<img src="img/folding-q1lt.png"></img>
</section>
<section class="header" id="q2ps" style="display:none">
<h1>Quarter Size</h1>
<p>Double-Sided / Portrait / Side-Fold</p><br><br>
<ol><li>Keep sheets stacked in the order they printed.</li>
<li>Lay the pile with the front cover at the top right.</li>
<li>Cut the entire pile in half horizontally.</li>
<li>Stack the top pile on top of the bottom. The front & back covers should be on top.</li>
<li>Fold the whole stack in half left-to-right and staple the spine.</li>
</ol>
<img src="img/folding-q2ps.png"></img>
</section>
<section class="header" id="q2pt" style="display:none">
<h1>Quarter Size</h1>
<p>Double-Sided / Portrait / Top-Fold</p><br><br>
<ol><li>Keep sheets stacked in the order they printed.</li>
<li>Lay the pile with the front cover at the bottom right.</li>
<li>Cut the entire pile in half vertically.</li>
<li>Stack the right-hand pile on top of the left one. The front & back covers should be on top.</li>
<li>Fold the whole stack in half top-to-bottom and staple the spine.</li>
</ol>
<img src="img/folding-q2pt.png"></img>
</section>
<section class="header" id="q2ls" style="display:none">
<h1>Quarter Size</h1>
<p>Double-Sided / Landscape / Side-Fold</p><br><br>
<ol><li>Keep sheets stacked in the order they printed.</li>
<li>Lay the pile with the front cover at the top right.</li>
<li>Cut the entire pile in half horizontally.</li>
<li>Stack the top pile on top of the bottom. The front & back covers should be on top.</li>
<li>Fold the whole stack in half left-to-right and staple the spine.</li>
</ol>
<img src="img/folding-q2ls.png"></img>
</section>
<section class="header" id="q2lt" style="display:none">
<h1>Quarter Size</h1>
<p>Double-Sided / Landscape / Top-Fold</p><br><br>
<ol><li>Keep sheets stacked in the order they printed.</li>
<li>Lay the pile with the front cover at the bottom right.</li>
<li>Cut the entire pile in half vertically.</li>
<li>Stack the right-hand pile on top of the left one. The front & back covers should be on top.</li>
<li>Fold the whole stack in half top-to-bottom and staple the spine.</li>
</ol>
<img src="img/folding-q2lt.png"></img>
</section>
<section class="header" id="hp" style="display:none">
<h1>Half Size</h1>
<p>Portrait</p><br><br>
<ol><li>Keep sheets stacked in the order they printed.</li>
<li>Hold the pile with the front cover on the right.</li>
<li>Fold in half left-to-right.</li>
<li>Staple the spine.</li>
</ol>
<img src="img/folding-hp.png"></img>
</section>
<section class="header" id="hl" style="display:none">
<h1>Half Size</h1>
<p>Landscape</p><br><br>
<ol><li>Keep sheets stacked in the order they printed.</li>
<li>Hold the pile with the front cover on the bottom.</li>
<li>Fold in half top-to-bottom.</li>
<li>Staple the spine.</li>
</ol>
<img src="img/folding-hl.png"></img>
</section>
<script>
var open = "";
function refreshSpecs() {
if(open != "") {
document.getElementById(open).style.display = "none";
open = "";
}
if(document.getElementById("zs-mini").checked) {
open = open + "e";
} else if(document.getElementById("zs-half").checked) {
open = open + "h";
} else {
open = open + "q";
}
if(open == "h" ) {
if(document.getElementById("ori-portrait").checked) {
open = open + "p";
} else {
open = open + "l";
}
} else {
if(document.getElementById("dx-double").checked) {
open = open + "2";
} else {
open = open + "1";
}
if(document.getElementById("ori-portrait").checked) {
open = open + "p";
} else {
open = open + "l";
}
if(document.getElementById("spine-side").checked) {
open = open + "s";
} else {
open = open + "t";
}
}
console.log(open);
document.getElementById(open).style.display = "flex";
}
function loadSpecs(str) {
if(str.length >=4) {
if(str.charAt(0) == "e") {
document.getElementById("zs-mini").checked = true;
} else if(str.charAt(0) == "h") {
document.getElementById("zs-half").checked = true;
} else {
document.getElementById("zs-qtr").checked = true;
}
if(str.charAt(1) == "1") {
document.getElementById("dx-single").checked = true;
} else {
document.getElementById("dx-double").checked = true;
}
if(str.charAt(2) == "p") {
document.getElementById("ori-portrait").checked = true;
} else {
document.getElementById("ori-landscape").checked = true;
}
if(str.charAt(3) == "s") {
document.getElementById("spine-side").checked = true;
} else {
document.getElementById("spine-top").checked = true;
}
}
refreshSpecs();
}
if(location.search != "") {
loadSpecs(location.search.substr(1));
} else {
refreshSpecs();
}
</script>