-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 892 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 892 Bytes
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
<!DOCTYPE HTML>
<html lang="fr-FR">
<head>
<meta charset="UTF-8" />
<title>Vanilla Hybrid Screens</title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<script src="js/vanilla-hybridscreens.js?v=0.3.0"></script>
</head>
<body>
<h1>Vanilla Hybrid Screens</h1>
<p>
Current input method is :
<span class="visible-keyboard">keyboard</span>
<span class="visible-touch">touch</span>
<span class="visible-mouse">mouse</span>
</p>
<p>
<a href="https://github.com/JavaScriptUtilities/vanillaHybridScreens" rel="noopener">Fork me on GitHub</a>
</p>
<script>
vanillaDetectHybridScreens({
keyboard: true
});
</script>
</body>
</html>