-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
106 lines (100 loc) · 4.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-slider.min.css" rel="stylesheet">
<link href="./css/main.css" rel="stylesheet">
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="setting">
<div>
<div><button id="btnSetting">设置</button></div>
</div>
<div id="overlay">
<div id="content" style="background-color: aliceblue; width:400px;">
<table border="1" cellspacing="0" height="150">
<caption style="caption-side:top" align="top">田字格字帖设置</caption>
<tr>
<td colspan="2">字帖内容:</td>
</tr>
<tr>
<td colspan="2"><textarea name="hz" style="width:380px; height: 200px;" id="inputContent">请使用设置功能自定义内容</textarea></td>
</tr>
<tr>
<td>字帖标题:</td>
<td><input id="inputTitle" value="田字格生成器" /></td>
</tr>
<tr>
<td>模板类型:</td>
<td>
<input type="radio" name="modelType" value="1" checked="">正常输入</input>
</br>
<input type="radio" name="modelType" value="2">正常输入加空行</input>
</br>
<input type="radio" name="modelType" value="3">一字三描红</input>
</br>
<input type="radio" name="modelType" value="4">整行描红</input>
</br>
<input type="radio" name="modelType" value="5">空行</input>
</td>
</tr>
<tr>
<td>字体设置:</td>
<td>
</td>
</tr>
<tr>
<td>字格类型:</td>
<td>
<input type="radio" name="zgType" value="1" checked="">田字格</input>
</br>
<input type="radio" name="zgType" value="2">米字格</input>
</br>
<input type="radio" name="zgType" value="4">回宫格</input>
</br>
<input type="radio" name="zgType" value="3">米字回宫格</input>
</br>
<input type="radio" name="zgType" value="5">无格</input>
</td>
</tr>
<tr>
<td>字格颜色:</td>
<td>
<input type="radio" name="zgColor" value="1" checked="">绿色</input>
</br>
<input type="radio" name="zgColor" value="2">黑色</input>
</br>
<input type="radio" name="zgColor" value="3">红色</input>
</td>
</tr>
<tr>
<td>文字颜色:</td>
<td>
<input type="radio" name="fontColor" value="102, 255, 153">绿色</input>
</br>
<input type="radio" name="fontColor" value="0, 0, 0">黑色</input>
</br>
<input type="radio" name="fontColor" value="224, 6, 6" checked="">红色</input>
</td>
</tr>
<tr>
<td>颜色深浅:</td>
<td>
<input id="mhColor" />
</td>
</tr>
</table>
<div></div>
<div><button id="btnConfirm">确认</button></div>
</div>
</div>
</div>
<div>
<ul id="printContent">
</ul>
</div>
</body>
</html>