代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no" />
<meta name="full-screen" content="true" />
<meta name="screen-orientation" content="portrait" />
<meta name="x5-fullscreen" content="true" />
<meta name="360-fullscreen" content="true" />
<title>Vite App</title>
<script type="text/javascript">
;(function (designWidth, maxWidth) {
const doc = document,
win = window
const docEl = doc.documentElement
let tid
let rootItem, rootStyle
function refreshRem() {
let width = docEl.getBoundingClientRect().width
if (!maxWidth) {
maxWidth = 750
}
if (width > maxWidth) {
width = maxWidth
}
const rem = (width * 100) / designWidth
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
}
}
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, 750)
</script>
</head>
<body ontouchstart="">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。