移动端开发常见问题

1.去除iphone下input的默认样式:

input {
    -webkit-appearance:none;
    border-radius: 0;
}

2.禁止用户长按选择页面内容:

body{
  -webkit-user-select:none;
}

3.实现:active效果:

<body ontouchstart=""></body>

4.禁止ios自动识别号码:

<meta name="format-detection" content="telephone=no"/>

 5.网页中独立区域滚动缓冲效果:

-webkit-overflow-scrolling:touch;

 6.移除移动端点击a链接触发颜色块:

-webkit-tap-highlight-color: rgba(0, 0, 0, 0); 

 

posted @ 2015-04-03 17:18  migo_  阅读(198)  评论(0编辑  收藏  举报