-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (109 loc) · 4.89 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
<!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>
<title>简单字帖</title>
</head>
<body>
<div id="setting">
<div>
<div class="noprint"><button id="btnSetting">字帖设置</button></div>
</div>
<div id="overlay">
<div id="content" style="background-color: aliceblue; width:450px;">
<table border="1" cellspacing="20" 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: 100px;" 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>
</td>
</tr>
<tr>
<td>字体设置:</td>
<td>
<input type="radio" name="fontName" value="1" checked="">楷体</input>
</br>
<input type="radio" name="fontName" value="2">阿里妈妈东方大楷</input>
</br>
<input type="radio" name="fontName" value="3">Kaiti SC</input>
</br>
<input type="radio" name="fontName" value="4">微软雅黑</input>
</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>
<footer>
<p>自定义字帖练习
</p>
</footer>
</body>
</html>