<script>
    (function(){
    setRem();
    window.addEventListener('orientation' in window?"deviceorientation":"resize",setRem);
    function setRem(){
        var html = document.getElementsByTagName('html')[0];
        var pageWidth = html.getBoundingClientRect().width;
        html.style.fontSize = pageWidth /15+ 'px';
    }
})();

</script>

 

相关文章:

  • 2021-08-10
  • 2021-06-29
  • 2022-01-12
猜你喜欢
  • 2022-02-13
  • 2021-06-02
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案