-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (67 loc) · 2.07 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
<!doctype html>
<html class="no-js" lang="zh-Hant">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cangjie Web IME</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h3 class="text-center">Cangjie Web IME</h3>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<input type="text" placeholder="Just type" id="preedit"></input>
<textarea id="edit" rows="3"></textarea>
<div>
<ul id="buttons" class="button-group even-3">
<li><a id="selectall" href="#" class="small button">Select All</a></li>
<li><a id="ecswitch" href="#" class="small button">Chinese</a></li>
<li><a id="config" href="#" class="small button">Config</a></li>
</ul>
</div>
<div id="usage" class="panel">
<p><strong>Usage</strong><br>
Press space to see next page of candidates.<br>
You could use both Cangjie 5 and Cangjie 3 input code.</p>
</div>
</div>
<div class="large-6 columns">
<div class="panel" id="candidates">
<ol style="visibility: hidden">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>0</li>
</ol>
</div>
</div>
</div>
<div class="row">
<div id="bottom" class="large-12 columns">
<ul class="inline-list">
<li><a href="https://github.com/mahiuchun/cangjie-webime">about</a></li>
<li><a href="https://github.com/mahiuchun/cangjie-webime/issues">feedback</a></li>
</ul>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script src="js/cangjie.js"></script>
<script src="js/script.js"></script>
</body>
</html>