首页 > 移动平台 > 详细

Web移动端常见问题

时间:2016-03-30 14:55:15      阅读:254      评论:0      收藏:0      [点我收藏+]

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

  解决方法:

.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移动端常见问题

原文:http://www.cnblogs.com/binlink/p/5336909.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!