-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
42 lines (32 loc) · 1.21 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
<!DOCTYPE HTML>
<html lang="en" class="normal">
<head>
<meta charset="utf-8">
<title>HTML2print</title>
<link rel="stylesheet" href="/assets/css/gui.css" media="screen">
</head>
<body>
<div id="viewport">
<iframe src="/document.html"></iframe>
</div>
<div id="toolbar">
<label for="preview">preview</label>
<input name="preview" value="true" type="checkbox">
<label for="debug">debug</label>
<input name="debug" value="true" type="checkbox">
<label for="spread">spread</label>
<input name="spread" value="true" type="checkbox">
<label for="hi-res">hi-res</label>
<input name="hi-res" value="true" type="checkbox">
<label for="zoom">zoom</label>
<input name="zoom" value="100" type="number" min="25" max="1600" step="25">
<label for="page">page</label>
<input name="page" value="1" type="number" min="1" max="100" step="1">
<div class="separator"></div>
<button id="print">print</button>
</div>
<!-- JAVASCRIPT -->
<script type="text/javascript" src="/assets/lib/jquery.min.js"></script>
<script type="text/javascript" src="/assets/js/gui.js"></script>
</body>
</html>