美文网首页
手机适应问题

手机适应问题

作者: 孤岛住着两个人 | 来源:发表于2017-11-17 11:11 被阅读0次

调整上边距

/* 订单填写页面样式 */
.order-fill {
    padding-top: 44px;
}
.ios .order-fill {
    padding-top: 64px;
}
.iphoneX .order-fill {
    padding-top: 88px;
}

template.html

<script>
      const u = navigator.userAgent;
        const isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
        if(isiOS){
            document.body.className="ios";
            if(screen.width === 375 && screen.height === 812){
                document.body.className += ' iphoneX';
            }
        }
    </script>

iphonex

Mozilla/5.0 LVMM (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Mobile/12A4345d Safari/600.1.4

相关文章

网友评论

      本文标题:手机适应问题

      本文链接:https://www.haomeiwen.com/subject/ukfrvxtx.html