-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathembed.html
85 lines (78 loc) · 3.21 KB
/
embed.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>T9 Predictive Text Input Emulator</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap-theme.min.css" type="text/css" />
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/underscore-min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/t9.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="emulator">
<div class="screen">
<span class="prev-text"></span><span class="current-text"></span><span class="cursor">|</span>
</div>
<div class="controller">
<button class="prediction-cycle btn btn-primary"><span class="glyphicon glyphicon-refresh"></span> cycle</button>
<button class="delete pull-right btn btn-primary"><span class="glyphicon glyphicon-circle-arrow-left"></span> delete</button>
</div>
<div class="keypad">
<button class="key key-1" disabled="disabled" value="1">
1
</button>
<button class="key key-2" value="2">
2 <small>abc</small>
</button>
<button class="key key-3" value="3">
3 <small>def</small>
</button>
<button class="key key-4" value="4">
4 <small>ghi</small>
</button>
<button class="key key-5" value="5">
5 <small>jkl</small>
</button>
<button class="key key-6" value="6">
6 <small>mno</small>
</button>
<button class="key key-7" value="7">
7 <small>pqrs</small>
</button>
<button class="key key-8" value="8">
8 <small>tuv</small>
</button>
<button class="key key-9" value="9">
9 <small>wxyz</small>
</button>
<button class="key key-star" disabled="disabled" value="symbol">
* #
</button>
<button class="key key-0" disabled="disabled" value="0">
0
</button>
<button class="key key-space" value="space">
<small>space</small>
</button>
</div>
</div>
<div class="loading">
<div class="progress progress-striped active">
<div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%">
</div>
</div>
<p>Downloading dictionary file. Please wait...</p>
</div>
</div>
</div>
</div>
</body>
</html>