forked from eracom-gr361/exemples-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clavier.html
50 lines (38 loc) · 1.13 KB
/
clavier.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
<!doctype html>
<html>
<head>
<title>clavier</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: "Roboto Mono", sans-serif;
font-size: 200%;
}
p {
padding: 1em;
}
</style>
</head>
<body>
<p>
Tapez sur le clavier
</p>
<script>
// 1: On définit la fonction Dactylo
function Dactylo(KeyEvent) {
// on récupère le caractère saisi
var myChar = String.fromCharCode(KeyEvent.which);
// on affiche le caractère
document.querySelector("p").innerHTML = myChar;
}
// 2: On déclenche la fonction dès qu'un caractère est entré.
document.onkeypress = Dactylo;
// appareils à écran tactile
// voici une méthode visant à faire apparaître le clavier
document.querySelector("p").addEventListener( "click", function(){
document.querySelector("p").focus();
});
</script>
</body>
</html>