关于移动端适配问题

Posted 乐得逍遥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于移动端适配问题相关的知识,希望对你有一定的参考价值。

移动端适配采用rem进行编写CSS,整理了三种方案:

  方案一:

    简单的JS适配

function resizeRoot(width){
var deviceWidth=document.documentElement.clientWidth,
num=width,
num1=num/100;
if(deviceWidth>num){
deviceWidth=num;
}
document.documentElement.style.fontSize=deviceWidth/num1+"px";
}
resizeRoot(750);
window.onresize=function(){
resizeRoot(750)
}
  拿到750尺寸的设计图,用PX/100即可

方法二:
  使用Flexible.js实现H5页面的终端适配 这是阿里开发的一款适配插件
  
  拿到750尺寸的设计图,用PX/75即可

方法三:
  使用CSS文件进行适配
  
@media screen and (min-width:300px){html,body,input{font-size:15px}}
@media screen and (min-width:320px){html,body,input{font-size:16px}}
@media screen and (min-width:340px){html,body,input{font-size:17px}}
@media screen and (min-width:360px){html,body,input{font-size:18px}}
@media screen and (min-width:375px){html,body,input{font-size:18.75px}}
@media screen and (min-width:380px){html,body,input{font-size:19px}}
@media screen and (min-width:400px){html,body,input{font-size:20px}}
@media screen and (min-width:414px){html,body,input{font-size:20.7px}}
@media screen and (min-width:420px){html,body,input{font-size:21px}}
@media screen and (min-width:440px){html,body,input{font-size:22px}}
@media screen and (min-width:460px){html,body,input{font-size:23px}}
@media screen and (min-width:480px){html,body,input{font-size:24px}}
@media screen and (min-width:500px){html,body,input{font-size:25px}}
@media screen and (min-width:520px){html,body,input{font-size:26px}}
@media screen and (min-width:540px){html,body,input{font-size:27px}}
@media screen and (min-width:560px){html,body,input{font-size:28px}}
@media screen and (min-width:580px){html,body,input{font-size:29px}}
@media screen and (min-width:600px){html,body,input{font-size:30px}}
@media screen and (min-width:620px){html,body,input{font-size:31px}}
@media screen and (min-width:640px){html,body,input{font-size:32px}}
@media screen and (min-width:660px){html,body,input{font-size:33px}}
@media screen and (min-width:680px){html,body,input{font-size:34px}}
@media screen and (min-width:700px){html,body,input{font-size:35px}}
@media screen and (min-width:720px){html,body,input{font-size:36px}}
@media screen and (min-width:740px){html,body,input{font-size:37px}}
@media screen and (min-width:760px){html,body,input{font-size:38px}}
@media screen and (min-width:780px){html,body,input{font-size:39px}}
@media screen and (min-width:800px){html,body,input{font-size:40px}}
@media screen and (min-width:1024px){html,body,input{font-size:51.2px}}
@media screen and (min-width:1349px){html,body,input{font-size:67.45px}}

拿到750尺寸的设计图,找到对应的尺寸(除以2后的)用PX/18.75即可

以上是关于关于移动端适配问题的主要内容,如果未能解决你的问题,请参考以下文章

移动端屏幕适配原理以及方法讲解

关于Html5移动端适配不同分辨率的布局总结

关于移动端--适配

关于移动端适配

前端关于移动端屏幕适配

移动端中适配问题