-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathindex.html
101 lines (84 loc) · 4.71 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
<!DOCTYPE html>
<html lang="zh-CN" class="no-js no-svg">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Cache-Control" content="no-transform " />
<title>田字格笔顺 字帖生成器</title>
<meta name="keywords" content="田字格字帖,笔顺字帖" />
<meta name="description" content="田字格字帖生成工具" />
<style>
body,div,p,h1{ padding:0; margin:0; list-style:none;}
body{color:#222; font-size:14px; font-family:"微软雅黑";padding-top:10px;padding-bottom:56px;}
div{width: 95%;max-width:980px; margin:0px auto; line-height:42px;}
a{color: #222;text-decoration: none}
textarea{width: 95%;max-width:950px; height:180px;border:1px solid #ccc;border-radius: 8px;padding:10px;outline: none;}
div.btn{ text-align:center; height:60px; line-height:50px; }
div.btn input{ width:88px; height:33px; font-size:18px;}
p{ margin-left:28px;}
div.top{width: 100%;max-width:980px; height:45px; margin:0px auto; padding:12px 0px;}
div.top h1{ font-size:32px; font-weight:bold;}
.green{ color:#009900;}
.red{ color:#cc0000;}
.info{ padding:12px 8px;border:1px dashed #ccc; line-height:28px;border-radius: 8px;}
.info strong, #description strong{color:red;font-size:16px;}
.info span{font-size:16px;}
#prompt h3{padding: 3px;margin: 0;}
#description{padding: 12px 0px;line-height: 28px;}
.input{width: 95%;max-width:360px;height: 26px; border-radius:5px; border:1px solid #ccc;padding: 1px 6px;}
</style>
</head>
<body>
<div class="top"><h1>田字格笔顺 字帖生成器</h1></div>
<form action="tzg.php" method="post" target="_blank">
<div id="description">
田字格字帖生成器,如不会打印请查看下方教程
</div>
<div id="prompt"><h3>请输入想要生成的汉字:</h3></div>
<div><textarea name="words"></textarea></div>
<div>田格类型:
<input type="radio" name="types" value="tzg" checked >田字格
<input type="radio" name="types" value="mzg">米字格
</div>
<div>田格颜色:
<input type="radio" name="bgcolor" value="green" ><span class="green">绿色</span>
<input type="radio" name="bgcolor" value="black" checked >黑色
<input type="radio" name="bgcolor" value="red"><span class="red">红色
</span>
</div>
<div>文字颜色:
<input type="radio" name="zcolor" value="green" ><span class="green">绿色</span>
<input type="radio" name="zcolor" value="black" checked >黑色
<input type="radio" name="zcolor" value="red"><span class="red">红色</span>
</div>
<div>描红背景:
<input type="radio" name="fcolor" value="1" ><span style="color:#888888">非常深</span>
<input type="radio" name="fcolor" value="2" ><span style="color:#999999">深</span>
<input type="radio" name="fcolor" value="3" ><span style="color:#a0a0a0">较深</span>
<input type="radio" name="fcolor" value="4"> <span style="color:#aaaaaa">略浅</span>
<input type="radio" name="fcolor" value="5" checked><span style="color:#b8b8b8">适中</span>
<input type="radio" name="fcolor" value="6"><span style="color:#cccccc">非常浅</span>
<!--input type="radio" name="fcolor" value="10"><span style="color:#ffffff; background:#666;padding:0px 3px;">白色(不可见)</span-->
</div>
<div id="bsfill" style="">笔顺剩余填充:
<input type="radio" name="bs" value="1"><span>是</span>
<input type="radio" name="bs" value="0" checked="">否</div>
<div id="pyfill" style="">显示拼音:
<input type="radio" name="py" value="1"><span>是</span>
<input type="radio" name="py" value="0" checked="">否</div>
<div>自定义页头:<input type="text" name="title" value="田字格字帖生成器" class="input"></div>
<div class="btn"><input type="submit" value="生成" ></div>
</form>
<div class="info">
<strong>注意:</strong>请认真阅读以下内容<p>
1、为保证打印效果,建议使用微软Edge浏览器、谷歌浏览器,字体为楷体,<span>打印设置勾选打印背景图片</span>;<br>
2、想将字帖生成文件,可以使用PDF打印机,打印成PDF文件。<a href="https://www.jb51.net/softs/584517.html" target="_blank">点击下载</a>
<br>
<img src="img/print.png" style="
max-width: 300px;
width: 100%;
"><br>
</p>
</div>
</body>
</html>