-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
534 lines (470 loc) · 18.6 KB
/
index.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML to Sketch</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Apple SD Gothic Neo', sans-serif;
}
body, html {
height: 100%;
}
ul, ol {
list-style: none;
}
h3 {
font-size: 15px;
margin-bottom: 12px;
margin-left: 3px;
}
/* 헤더 */
.Header {
position: fixed;
top: 0;
left: 0;
z-index: 500;
background-color: #fff;
width: 100%;
border-bottom: 1px solid #eaeaea;
height: 50px;
}
.Header__input {
width: 100%;
padding: 0 0 3px 118px;
height: 100%;
font-size: 15px;
border: 0;
color: #4f4f4f;
transition: 0.2s;
background: none;
font-weight: 200;
outline: 0;
box-shadow: inset 0 0 0 2px rgba(0, 127, 255, 0);
}
.Header__input:focus {
color: #0f0f0f;
}
.Header__webview-tool-box {
width: 120px;
position: absolute;
left: 0;
top: 0;
background-color: rgba(255, 255, 255, 0);
padding: 14px 6px;
}
.Header__webview-btn {
cursor: pointer;
border: 0;
background: none;
width: 28px;
outline: 0;
}
/* 컨텐트 */
.Content {
width: 100%;
height: 100%;
padding: 50px 255px 0 0;
}
.Content__webview {
width: 100%;
height: 100%;
}
.Content__size-view {
display: none;
position: absolute;
background-color: rgba(255, 255, 255, 0.7);
padding: 4px 10px;
left: 0;
font-size: 15px;
top: 50px;
}
/* 사이드바 */
.SideBar {
position: fixed;
right: 0;
top: 0;
padding: 68px 18px 18px;
background-color: #f1f1f1;
border-left: 1px solid #e6e6e6;
height: 100%;
width: 255px;
}
.SideBar__pick-btn,
.SideBar__run-btn {
cursor: pointer;
width: 100%;
margin-bottom: 14px;
font-size: 14px;
border-radius: 3px;
display: inline-block;
padding: 0 18px 1px;
height: 36px;
outline: 0;
}
.SideBar__pick-btn {
outline: 0;
background-color: #fdfdfd;
border: 1px solid #dfdfdf;
box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.05);
color: #424242;
}
.SideBar__pick-btn-icon {
position: relative;
top: 2px;
}
.SideBar__pick-btn:hover {
border: 1px solid #cfcfcf;
}
.SideBar__pick-btn-content--stop-mode {
display: none;
}
.SideBar__pick-btn--stop-mode .SideBar__pick-btn-content--pick-mode {
display: none;
}
.SideBar__pick-btn--stop-mode .SideBar__pick-btn-content--stop-mode {
display: block;
}
.SideBar__run-btn {
background: #FFDE00;
border: 1px solid #F2CB00;
box-shadow: 0 3px 2px -2px rgba(202, 151, 13, 0.29);
color: #000;
}
.SideBar__run-btn-icon {
position: relative;
top: 2px;
}
.SideBar__run-btn:hover {
border: 1px solid #E1A602;
}
.SideBar__run-btn-content--picked-mode {
display: none;
}
.SideBar__run-btn--picked-mode .SideBar__run-btn-content--picked-mode {
display: inline;
}
.SideBar__run-btn--picked-mode .SideBar__run-btn-content--page-mode {
display: none;
}
/* 알럿 */
.Alert {
background: #FFFFFF;
border: 1px solid #EDEDED;
box-shadow: 0 30px 32px -20px rgba(0, 0, 0, 0.32);
border-radius: 3px;
position: fixed;
top: 50%;
left: -99999px;
transform: translate(-50%, -50%);
width: 246px;
padding: 26px 32px;
text-align: center;
font-size: 15px;
font-weight: 600;
min-height: 80px;
animation-name: Alert;
animation-duration: 0.6s;
z-index: 501;
}
@keyframes Alert {
0% {
opacity: 0;
top: calc(50% - 30px);
box-shadow: 0 60px 35px -20px rgba(0, 0, 0, 0.28);
}
40% {
opacity: 0;
top: calc(50% - 30px);
box-shadow: 0 60px 35px -20px rgba(0, 0, 0, 0.28);
}
100% {
opacity: 1;
top: 50%;
box-shadow: 0 30px 32px -20px rgba(0, 0, 0, 0.28);
}
}
.Alert * {
vertical-align: middle;
}
.Cover {
position: fixed;
display: none;
left: 0;
top: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.23);
z-index: 500;
}
.Alert--loading,
.Alert--fail {
left: 50%;
}
.Alert--loading ~ .Cover,
.Alert--fail ~ .Cover {
display: block;
}
.Alert__message--loading,
.Alert__message--done,
.Alert__message--fail {
display: none;
}
.Alert--loading .Alert__message--loading,
.Alert--done .Alert__message--done,
.Alert--fail .Alert__message--fail {
display: inline;
}
.Alert--done {
opacity: 0;
left: -999999px;
animation-name: Alert--done;
animation-duration: 2s;
}
@keyframes Alert--done {
0% {
left: 50%;
top: 50%;
opacity: 1;
}
80% {
left: 50%;
top: 50%;
opacity: 1;
}
100% {
left: 50%;
top: calc(50% - 30px);
opacity: 0;
}
}
.Alert__message--done {
animation-name: Alert__message--done;
animation-duration: 0.6s;
}
@keyframes Alert__message--done {
0% {
position: relative;
opacity: 0;
top: -10px;
}
100% {
opacity: 1;
top: 0;
}
}
.Alert__loading-img {
animation-name: Alert__loading-img;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes Alert__loading-img {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.Alert__done-icon {
width: 14px;
height: 22px;
border-width: 0 4px 4px 0;
border-color: #000;
border-style: solid;
transform: rotate(45deg) translate(-5px);
display: inline-block;
border-image: linear-gradient(to top, #50C2FF, #3777EA);
border-image-slice: 1;
}
.Alert--fail {
width: 360px;
}
.Alert__message-title--fail {
font-size: 15px;
font-weight: 700;
text-align: center;
word-break: break-word;
margin-bottom: 18px;
}
.Alert__message-text--fail {
font-size: 13px;
font-weight: 400;
text-align: left;
word-break: break-all;
height: 80px;
overflow-y: scroll;
background-color: #f5f5f5;
padding: 12px;
border-radius: 6px;
margin-bottom: 18px;
}
.Alert__fail-close-button {
cursor: pointer;
width: 60px;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
display: inline-block;
margin: auto;
padding: 0 12px 1px;
height: 32px;
outline: 0;
background-color: #fdfdfd;
border: 1px solid #dfdfdf;
box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.05);
color: #424242;
}
.Option {
padding: 0 0 24px;
}
.Option__font-label {
font-size: 14px;
margin-bottom: 4px;
padding: 0 4px;
}
.Option__font-selector {
width: 100%;
margin-bottom: 12px;
outline: none;
height: 28px;
font-size: 13px;
padding: 0 18px;
border-radius: 3px;
cursor: pointer;
background-color: #fdfdfd;
border: 1px solid #dfdfdf;
box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.05);
}
.Option__font-selector:hover {
border: 1px solid #cfcfcf;
}
.Option__font-selector:invalid {
color: #565656;
}
.WebviewWidthController {
padding: 16px 0 12px;
border-bottom: 1px solid #d4d4d4;
margin-bottom: 28px;
}
.WebviewWidthController__input {
width: 100%;
margin-bottom: 12px;
outline: none;
height: 28px;
font-size: 13px;
padding: 0 8px;
border-radius: 3px;
background-color: #fdfdfd;
border: 1px solid #dfdfdf;
box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.05);
}
</style>
</head>
<body>
<div class="Header">
<input class="Header__input" type="url" placeholder="Insert url...">
<div class="Header__webview-tool-box">
<button class="Header__webview-btn" type="button" onclick="webview.goBack()">
<svg xmlns="http://www.w3.org/2000/svg" width="11" height="17" viewBox="0 0 11 17">
<polyline fill="none" stroke="#A1A1A1" stroke-width="1.8" points="131.576 82.171 123.342 89.692 131.576 97.214" transform="translate(-122 -81)"/>
</svg>
</button>
<button class="Header__webview-btn" type="button" onclick="webview.goForward()">
<svg xmlns="http://www.w3.org/2000/svg" width="11" height="17" viewBox="0 0 11 17">
<polyline fill="none" stroke="#A1A1A1" stroke-width="1.8" points="155.869 82.171 164.103 89.692 155.869 97.214" transform="translate(-155 -81)"/>
</svg>
</button>
<button class="Header__webview-btn" type="button" onclick="webview.reload()">
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="17" viewBox="0 0 21 17">
<g fill="none" fill-rule="evenodd" stroke="#A1A1A1" stroke-width="1.8" transform="translate(-2 -2)">
<polyline points="15.559 3.87 21.039 6.715 18.087 12.137" transform="scale(1 -1) rotate(-48 .322 0)"/>
<path d="M14.9144583,17.0267237 C13.78997,17.7238734 12.4636389,18.1263661 11.0433005,18.1263661 C6.98013543,18.1263661 3.68628931,14.83252 3.68628931,10.7693549 C3.68628931,6.70618978 6.98013543,3.41234365 11.0433005,3.41234365 C15.1064656,3.41234365 18.4003118,6.70618978 18.4003118,10.7693549" transform="scale(1 -1) rotate(-53 -10.557 0)"/>
</g>
</svg>
</button>
</div>
</div>
<div class="SideBar">
<button class="SideBar__pick-btn">
<span class="SideBar__pick-btn-content--pick-mode">
<svg class="SideBar__pick-btn-icon" xmlns="http://www.w3.org/2000/svg" width="13" height="14" viewBox="0 0 13 14">
<path fill="#424242" d="M156.110047,679.676772 L158.876142,682.442868 L157.729672,683.589338 L154.982756,680.842422 L152.996359,683.521516 L150.724747,675.308762 L158.9375,677.580375 L156.110047,679.676772 Z M158.145409,675.496069 L156.822266,675.496069 L156.822266,672.133511 C156.822266,672.011719 156.723534,671.912987 156.601742,671.912987 L147.549495,671.912987 C147.427703,671.912987 147.328971,672.011719 147.328971,672.133511 L147.328971,681.185758 C147.328971,681.30755 147.427703,681.406282 147.549495,681.406282 L150.949041,681.406282 L150.949041,682.729425 L147.549495,682.729425 C146.696951,682.729425 146.005828,682.038302 146.005828,681.185758 L146.005828,672.133511 C146.005828,671.280967 146.696951,670.589844 147.549495,670.589844 L156.601742,670.589844 C157.454286,670.589844 158.145409,671.280967 158.145409,672.133511 L158.145409,675.496069 Z" transform="translate(-146 -670)"/>
</svg>
Pick
</span>
<span class="SideBar__pick-btn-content--stop-mode">
Cancel
</span>
</button>
<button class="SideBar__run-btn" type="button">
<svg class="SideBar__run-btn-icon" xmlns="http://www.w3.org/2000/svg" width="15" height="14" viewBox="0 0 15 14">
<g fill="none" stroke="#2E2E2E" stroke-linecap="round" stroke-linejoin="round" stroke-width=".9" transform="translate(.554 1.021)">
<polygon points="2.994 .406 6.862 0 10.73 .406 13.725 4.393 6.862 12.32 0 4.393"/>
<polygon points="2.78 4.393 6.862 12.32 0 4.393"/>
<polygon points="9.642 4.393 13.725 12.32 6.862 4.393" transform="matrix(-1 0 0 1 20.587 0)"/>
<polygon points="2.78 4.393 10.945 4.393 6.862 12.32"/>
<polygon points="6.862 0 2.994 .406 2.78 4.393"/>
<polygon points="10.945 0 7.077 .406 6.862 4.393" transform="matrix(-1 0 0 1 17.808 0)"/>
<polygon points="10.73 4.393 13.725 .406 13.51 4.393" transform="matrix(-1 0 0 1 24.455 0)"/>
<polygon points="0 4.393 2.994 .406 2.78 4.393"/>
<polygon points="6.862 0 2.78 4.393 10.945 4.393"/>
</g>
</svg>
<span class="SideBar__run-btn-content--page-mode">
Draw Page
</span>
<span class="SideBar__run-btn-content--picked-mode">
Draw
</span>
</button>
<div class="WebviewWidthController">
<h3>Webview Width</h3>
<input
class="WebviewWidthController__input"
type="number"
placeholder="auto"
onblur="handleBlur(event);"
onkeydown="if (event.key === 'Enter') handleBlur(event);"
>
</div>
<h3>Font Replacer</h3>
<ul class="Option"></ul>
</div>
<div class="Content">
<webview
src="https://kimdal-hyeong.github.io/html-to-sketch-electron/download-analyst/?utm_source=in-app"
class="Content__webview"
preload="./webviewScript/preload.js"
></webview>
<div class="Content__size-view"></div>
</div>
<div class="Alert">
<span class="Alert__message--loading">
<img class="Alert__loading-img" width="25" height="25" src="data:image/png;base64,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">
Drawing...
</span>
<span class="Alert__message--done">
<div class="Alert__done-icon"></div>
Done!
</span>
<span class="Alert__message--fail">
<h5 class="Alert__message-title--fail"></h5>
<p class="Alert__message-text--fail"></p>
<button class="Alert__fail-close-button" type="button" onclick="closeFailAlert();">Close</button>
</span>
</div>
<div class="Cover"></div>
<script src="script/index.js"></script>
<script>
if(process.env.NODE_ENV === 'dev') {
const webview = document.getElementsByClassName('Content__webview')[0];
webview.addEventListener("dom-ready", () => {webview.openDevTools();});
}
</script>
</body>
</html>