forked from Jasonwang911/vue_mockjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>mockjs</title>
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no, maximum-scale=1,minimum-scale=1">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta name="format-detection" content="telephone=no,email=no,adress=no">
<meta name="full-screen" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="HandheldFriendly" content="true">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="x-ua-compitable" content="ie=edge">
<link rel="stylesheet" href="./static/reset.css">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
<script>
(function(win, doc) {
function change() {
doc.documentElement.style.fontSize = doc.documentElement.clientWidth / 7.5 + 'px';
}
change();
win.addEventListener('resize', change, false);
})(window, document);
</script>
</html>