代码拉取完成,页面将自动刷新
同步操作将从 ecitlm/vue-mpa-cli 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<meta http-equiv="Time" content="<%= new Date() %>">
<meta http-equiv="Version-Type" content="<%= htmlWebpackPlugin.options.versionType %>">
<title><%= htmlWebpackPlugin.options.title%></title>
<style>
@media screen and (min-width: 1200px) {
body,html {
font-size: 50px !important;
}
}
</style>
</head>
<body>
<script>
(function (designWidth, maxWidth) {
var doc = document
var win = window
var docEl = doc.documentElement
var tid
var rootItem, rootStyle
function refreshRem () {
var width = docEl.getBoundingClientRect().width
var dpr = window.devicePixelRatio || 1
docEl.setAttribute('data-dpr', dpr)
if (!maxWidth) {
maxWidth = 750
};
if (width > maxWidth) {
width = maxWidth
}
var rem = width * 75 / designWidth
// 兼容UC开始
rootStyle = 'html{font-size:' + rem + 'px !important}'
rootItem = document.getElementById('rootsize') || document.createElement('style')
if (!document.getElementById('rootsize')) {
document.getElementsByTagName('head')[0].appendChild(rootItem)
rootItem.id = 'rootsize'
}
if (rootItem.styleSheet) {
rootItem.styleSheet.disabled || (rootItem.styleSheet.cssText = rootStyle)
} else {
try {
rootItem.innerHTML = rootStyle
} catch (f) {
rootItem.innerText = rootStyle
}
}
// 兼容UC结束
docEl.style.fontSize = rem + 'px'
};
refreshRem()
win.addEventListener('resize', function () {
clearTimeout(tid) // 防止执行两次
tid = setTimeout(refreshRem, 300)
}, false)
win.addEventListener('pageshow', function (e) {
if (e.persisted) { // 浏览器后退的时候重新计算
clearTimeout(tid)
tid = setTimeout(refreshRem, 300)
}
}, false)
if (doc.readyState === 'complete') {
doc.body.style.fontSize = '16px'
} else {
doc.addEventListener('DOMContentLoaded', function (e) {
doc.body.style.fontSize = '16px'
}, false)
}
})(750, 768)
</script>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。