-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (67 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Your touch device information</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<style>
html, body, div { padding: 0; margin: 0; border 0; }
html, body { width: 100%; height: 100%; }
</style>
<script>
// 表示領域をクリアする
function clear(id) {
document.getElementById(id).textContent = "";
}
// 表示領域に情報を追加する
function add(id, key, value) {
const e = document.createElement("div");
document.getElementById(id).appendChild(e);
e.textContent = key + "=[" + value + "]";
}
// ブラウザ情報を表示する
function set_info() {
const keys = [
"window.navigator.userAgent",
"window.navigator.maxTouchPoints",
"window.parent.screen.width",
"window.parent.screen.height",
"window.screen.width",
"window.screen.height",
];
for (var key of keys) {
add("information-area", key, eval(key));
}
}
// タッチデバイスの情報を表示する
function handle_touch(event) {
clear("touch-area");
try {
for (var i=0; i<event.touches.length; i++) {
var touch = event.touches.item(i);
// Touch.force: 圧力を0.0〜1.0の値で取得する
add("touch-area", "Touch[" + i + "].force", touch.force);
add("touch-area", "Touch[" + i + "].clientX", touch.clientX);
add("touch-area", "Touch[" + i + "].clientY", touch.clientY);
}
} catch(e) {
add("touch-area", "error", e);
}
}
window.onload = function() {
set_info();
// 画面に触れはじめたときのイベントに関数を登録
document.body.addEventListener("touchstart", handle_touch);
// 画面上で移動しているときのイベントに関数を登録
document.body.addEventListener("touchmove", handle_touch);
};
</script>
</head>
<body>
<h1>Your touch device information</h1>
<div id="area">
<div id="information-area"></div>
<div id="touch-area"></div>
</div>
</body>
</html>