-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (118 loc) · 2.85 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WebSensors</title>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
position: relative;
}
table {
margin: 0 auto;
}
th {
text-align: right;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<th>
加速度计(Accelerometer)
</th>
<td>
<span class='accelerometer'>No</span>
</td>
</tr>
<tr>
<th>
陀螺仪(Gyroscope)
</th>
<td>
<span class='gyroscope'>No</span>
</td>
</tr>
<tr>
<th>
线性加速度传感器(LinearAccelerationSensor)
</th>
<td>
<span class='linear-acceleration-sensor'>No</span>
</td>
</tr>
<tr>
<th>
绝对方向传感器(AbsoluteOrientationSensor)
</th>
<td>
<span class='absolute-orientation-sensor'>No</span>
</td>
</tr>
<tr>
<th>
相对方向传感器(RelativeOrientationSensor)
</th>
<td>
<span class='relative-orientation-sensor'>No</span>
</td>
</tr>
<tr>
<th>
环境光传感器(AmbientLightSensor)
</th>
<td>
<span class='ambient-light-sensor'>No</span>
</td>
</tr>
<tr>
<th>
磁力计(Magnetometer)
</th>
<td>
<span class='magnetometer'>No</span>
</td>
</tr>
</tbody>
</table>
<script>
(function() {
if (window.Accelerometer) {
setSensorStatusText('.accelerometer', 'Yes');
}
if (window.Gyroscope) {
setSensorStatusText('.gyroscope', 'Yes');
}
if (window.LinearAccelerationSensor) {
setSensorStatusText('.linear-acceleration-sensor', 'Yes');
}
if (window.AbsoluteOrientationSensor) {
setSensorStatusText('.absolute-orientation-sensor', 'Yes');
}
if (window.RelativeOrientationSensor) {
setSensorStatusText('.relative-orientation-sensor', 'Yes');
}
if (window.AmbientLightSensor) {
setSensorStatusText('.ambient-light-sensor', 'Yes');
}
if (window.Magnetometer) {
setSensorStatusText('.magnetometer', 'Yes');
}
function setSensorStatusText(selector, text) {
var domSel = document.querySelector(selector);
if (domSel) {
domSel.innerText = text;
}
}
})();
</script>
</body>
</html>