-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
33 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta name="format-detection" content="telephone=no, email=no" />
<title>vue-wap</title>
<script src="//g.alicdn.com/fdilab/lib3rd/viewport-units-buggyfill/0.6.2/??viewport-units-buggyfill.hacks.min.js,viewport-units-buggyfill.min.js"></script>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script>
window.onload = function () {
window.viewportUnitsBuggyfill.init({
hacks: window.viewportUnitsBuggyfillHacks
});
console.log({
'Windows_DPI': window.devicePixelRatio,
'User_Agent': window.navigator.userAgent,
'Screen_Width': window.screen.width,
'Screen_Height': window.screen.height,
'Window_Width': window.innerWidth,
'Window_Height': window.innerHeight
})
}
</script>
</body>
</html>