前端大屏自适应js和css

转自:https://blog.csdn.net/qq_42033668/article/details/109717401

分辨率1920*1080,其它分辨率的也可以试试。

第一种方式(类似浏览器Ctrl+鼠标滚轮缩放),目前发现一个缺陷,用到了echarts 会出现鼠标焦点不对应

head 里面加上

    <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<script>
        var tid,
            doc=document,
            docEl = doc.documentElement;
        docEl.style.zoom=docEl.clientWidth / 1920;

      
        addEventListener('resize', function () {
            clearTimeout(tid);
            tid = setTimeout(function () {
                docEl.style.zoom=docEl.clientWidth / 1920;
                // window.location.reload();
            }, 300);
        }, false);
</script>

第二种方式(推荐 虽然改动较大,实实在在自适应缩放)

<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<script>
        var tid,
            doc=document,
            docEl = doc.documentElement;
         var refreshRem = function () {
                    var clientWidth = docEl.clientWidth;
                    if (clientWidth >= 1920) {
                        docEl.style.fontSize = '10px'; //1rem  = 10px
                    } else {
                        docEl.style.fontSize = 10 * (clientWidth / 1920) + 'px';
                    }
                };
         addEventListener('resize', function () {
               clearTimeout(tid);
               tid = setTimeout(refreshRem, 300);
           }, false);
         addEventListener('pageshow', function (e) {
               if (e.persisted) {
                   clearTimeout(tid);
                   tid = setTimeout(refreshRem, 300);
               }
           }, false);
           refreshRem();
</script>

然后 css 改用下面的那种单位,上面第二种方法 相当于 1rem=10px

.div{
    text-align: center;
    height:200px;
    line-height: 46px;
}
/*改为下面的*/
.div{
    text-align: center;
    height:20rem;
    line-height: 4.6rem;
}

在线转换 px转rem工具
http://www.ofmonkey.com/

 

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值