forked from flomincucci/Keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (27 loc) · 993 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Virtual Keyboard</title>
<!-- jQuery (required) -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<!-- keyboard widget css & script (required) -->
<link href="css/keyboard.css" rel="stylesheet">
<script src="js/keyboard.js"></script>
</head>
<body>
<div id="page-wrap">
<h1><a href="https://github.com/flomincucci/Keyboard">Virtual Keyboard</a></h1>
<div class="block">
<h2><span class="tooltip" title="Click to see code">QWERTY Text</span></h2>
<input id="text1" class="text" type="text" placeholder="Enter something...">
<input id="text2" class="text" type="text" placeholder="Enter something else">
<div class="qwerty"></div>
<script type="text/javascript">
$('.qwerty').build_keyboard({layout: 'qwerty'});
$('.text').keyboard();
</script>
<div id="showcode"></div>
<div id="footer"></div>
</div>
</body></html>