-
Notifications
You must be signed in to change notification settings - Fork 4
/
mob.html
30 lines (27 loc) · 852 Bytes
/
mob.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
<!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>Document</title>
<script src="./mob.js"></script>
</head>
<div>
</div>
<body>
<script>
var md = new MobileDetect(window.navigator.userAgent);
console.log(md.mobile()); // 'Sony'
console.log(md.phone()); // 'Sony'
console.log(md.tablet()); // null
console.log(md.userAgent()); // 'Safari'
console.log(md.os()); // 'AndroidOS'
console.log(md.is('iPhone')); // false
console.log(md.is('bot')); // false
console.log(md.version('Webkit')); // 534.3
console.log(md.versionStr('Build')); // '4.1.A.0.562'
console.log(md.match('playstation|xbox')); // false
</script>
</body>
</html>