36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
<!-- 移动端适配 -->
|
|
<script>
|
|
(function(win, doc) {
|
|
if (!win.addEventListener) return;
|
|
function setFont() {
|
|
var html = document.documentElement;
|
|
var width = html.clientWidth;
|
|
var fontSize = (width / 375) * 16; // 以iPhone 6/7/8为基准
|
|
html.style.fontSize = fontSize + 'px';
|
|
}
|
|
setFont();
|
|
setTimeout(function() {
|
|
setFont();
|
|
}, 300);
|
|
doc.addEventListener('DOMContentLoaded', setFont, false);
|
|
win.addEventListener('resize', setFont, false);
|
|
win.addEventListener('load', setFont, false);
|
|
})(window, document);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
</html> |