forked from PabloRomanH/zhongzhong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
110 lines (108 loc) · 4.83 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/options.css" />
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="js/options.js" type="text/javascript"></script>
</head>
<body>
<div class='container'>
<h2>Zhongzhong Preferences</h2>
<div class="savemessage">
Changes are applied automatically. Reload the Chinese page for the theme change to become visible.
</div>
<form id="optform" name="optform">
<h3>Dictionaries</h3>
<label for="dicts">Default dictionary</label>. Change dictionary used by default (change with Shift or Return key):
<p>
<select id="dicts" name="dicts" class="form-control">
<option value="engHan">Chinese-English</option>
<option value="hanEng">Character info</option>
</select>
</p>
<h3>Display options</h3>
<label for="chars">Character set</label>. Choose whether to show only simplified characters, traditional characters or both:
<p>
<select id="chars" name="chars" class="form-control">
<option value="both">both</option>
<option value="traditional">traditional</option>
<option value="simplified">simplified</option>
</select>
</p>
<p>
<label>
<input id="pinyin" type="checkbox" name="pinyin"> Show Pinyin.
</label>
Turn on and off the Pinyin phonetic symbols.
</p>
<p>
<label>
<input id="tonecolors" type="checkbox" name="tonecolors"> Show tone colors.
</label>
Turn colors for the Pinyin syllables on and off. <span class="red">Red = first tone</span>, <span class="orange">Orange = second tone</span>, <span class="green">Green = third tone</span>, <span class="blue">Blue = fourth tone</span>.
</p>
<p>
<label>
<input id="zhuyin" type="checkbox" name="zhuyin"> Show Zhuyin (Bopomofo).
</label>
Turn Zhuyin (Bopomofo) on and off. Zhuyin are Taiwan's phonetic symbols.
</p>
<p>
<label>
<input id="definitions" type="checkbox" name="definitions"> Show word definitions.
</label>
Uncheck to show only pronunciation.
</p>
<p>
<label>
<input id="grammar" type="checkbox" name="grammar"> Show grammar and usage notes.
</label>
</p>
<h3>Read aloud</h3>
<label for="voice">Voice</label> for the read-aloud feature:
<p>
<select id="voice" name="voice" class="form-control">
<option value="zh-CN">Mainland China</option>
<option value="zh-TW">Taiwan</option>
</select>
</p>
<h3>Look&Feel</h3>
<label for="popupcolor">Theme</label>:
<p>
<select id="popupcolor" name="popupcolor" class="form-control">
<option value="white">White</option>
<option value="blue">Blue</option>
<option value="lightblue">Light Blue</option>
<option value="black">Black</option>
<option value="yellow">Yellow</option>
</select>
</p>
<label for="fontSize">Font size</label>:
<p>
<select id="fontSize" name="fontSize" class="form-control">
<option value="large">Large</option>
<option value="small">Small</option>
</select>
</p>
<label for="font">Font</label> for the Chinese characters:
<p>
<select id="font" name="font" class="form-control">
<option value="sans">Sans serif</option>
<option value="serif">Serif</option>
<option value="handdrawn">Hand-drawn</option>
</select>
</p>
<h3>Skritter options</h3>
<label for="skritterTLD">Skritter domain</label>. For some users <code>skritter.cn</code> might work better (Skritter login required):
<p>
<select id="skritterTLD" name="skritterTLD" class="form-control">
<option value="com">skritter.com</option>
<option value="cn">skritter.cn</option>
</select>
</p>
<hr>
</form>
</div>
</body>
</html>