移动端页面适配

在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>
posted @ 2022-01-10 18:44  koo-  阅读(25)  评论(0)    收藏  举报