-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.67 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
<!--index.html-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<link rel="stylesheet" href="style.css" />
<title>图片压缩</title>
</head>
<body>
<div class="container">
<div class="configuration-pane">
<input type="checkbox" name="desktop" checked />
<label for="desktop"
>为<abbr title="宽度不超过 800 像素">桌面</abbr
>浏览压缩</label
><br />
<input type="checkbox" name="mobile" checked />
<label for="mobile"
>为<abbr title="宽度不超过 320 像素">移动端</abbr
>浏览压缩</label
><br />
<input type="checkbox" name="customized" />
<label for="customized"
>宽度不超过
<input
type="number"
step="1"
min="1"
name="customized_width"
/>
像素</label
>
</div>
<div class="drop-zone"></div>
</div>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>