1 Star 0 Fork 3

马鹏波/vue-mpa-cli

forked from ecitlm/vue-mpa-cli 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 2.99 KB
一键复制 编辑 原始数据 按行查看 历史
ecitlm 提交于 2018-09-26 09:22 . feat:update index
<!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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/woligequ/vue-mpa-cli.git
git@gitee.com:woligequ/vue-mpa-cli.git
woligequ
vue-mpa-cli
vue-mpa-cli
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385