移动端页面适配
在index.html添加
<script>
(function () {
var f = function () {
document.documentElement.style.fontSize =
document.documentElement.clientWidth / 7.5 + 'px'
}
f()
window.addEventListener && window.addEventListener('resize', f, false)
})()
</script>