Web移动端常见问题

Posted

tags:

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

一、按钮点击时出现黑色背景

  解决方法:

.class { -webkit-tap-highlight-color:rgba(0,0,0,0);}
.class { -webkit-appearance: none; -webkit-tap-highlight-color: transparent;}

  

二、ios中伪类:active失效

  解决方法:

$(function(){
    document.body.addEventListener(‘touchstart‘, function () { }); 
}) 

  

三、移动端常用<meta>标签

<meta content="width=device-width,height=device-height,inital-scale=1.0,maximum-scale=1.0,user-scalable=no;" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">

四、响应式语法

@media screen and (max-width: 320px){
    .class { }
 }
@media screen and (min-width:321px) and (max-width:375px){
    .class { }
}

  

五、屏蔽浏览器滑动翻页

  解决方法

var doc = document.getElementById(‘id‘);
doc.addEventListener(‘touchmove‘, function(event) {
  if(event.target.type == ‘range‘) return;
  event.preventDefault();
})

  

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

你可能不知道的JavaScript代码片段和技巧(上)

移动端web开发框架

移动端web开发框架

常见的H5移动端Web页面Bug问题解决方案总汇

常见的H5移动端Web页面Bug问题解决方案总汇

html5移动端阻止滚动问题。