40条常见的移动端Web页面问题解决方案(一)

发布于2017年8月29日 22:29:45

移动端Web需要照顾触摸操作的体验,以及更多的屏幕旋转与尺寸适配等问题,非常琐碎,在这里为大家倾力总结40条常见的移动端Web页面问题解决方案,欢迎收看斧正收藏!

1、安卓浏览器看背景图片,有些设备会模糊。

用同等比例的图片在PC机上很清楚,但是手机上很模糊,原因是什么呢?

经过研究,是devicePixelRatio作怪,因为手机分辨率太小,如果按照分辨率来显示网页,这样字会非常小,所以苹果当初就把iPhone 4的960640分辨率,在网页里只显示了480320,这样devicePixelRatio=2。现在android比较乱,有1.5的,有2的也有3的。

想让图片在手机里显示更为清晰,必须使用2x的背景图来代替img标签(一般情况都是用2倍)。例如一个div的宽高是100100,背景图必须得200200,然后background-size:contain;,这样显示出来的图片就比较清晰了。

代码可以如下:

background:url(../images/icon/all.png) no-repeat center center;
-webkit-background-size:50px 50px;
background-size: 50px 50px;display:inline-block; width:100%; height:50px;  

或者指定 background-size:contain;都可以,大家试试!

2、图片加载

若您遇到图片加载很慢的问题,对这种情况,手机开发一般用canvas方法加载:

具体的canvas API 参见:http://javascript.ruanyifeng.com/htmlapi/canvas.html

下面举例说明一个canvas的例子:

<li><canvas></canvas></li> 

js动态加载图片和li 总共举例17张图片!

var total=17; 
var zWin=(window); 
var render=function(){ 
  var padding=2; 
  var winWidth=zWin.width(); 
  var picWidth=Math.floor((winWidth-padding*3)/4); 
  var tmpl =''; 
  for (var i=1;i<=totla;i++){ 
  var p=padding; 
  var imgSrc='img/'+i+'.jpg'; 
  if(i%4==1){ 
   p=0; 
  } 
  tmpl +='<li style="width:'+picWidth+'px;height:'+picWidth+'px;padding-left:'+p+'px;padding-top:'+padding+'px;"><canvas id="cvs_'+i+'"></canvas></li>'; 
  var imageObj = new Image(); 
  imageObj.index = i; 
  imageObj.onload = function(){ 
    var cvs =('#cvs_'+this.index)[0].getContext('2d'); 
    cvs.width = this.width; 
    cvs.height=this.height; 
    cvs.drawImage(this,0,0); 
  } 
  imageObj.src=imgSrc; 
  } 

} 
render();
3、假如手机网站不用兼容IE浏览器,一般我们会使用zeptojs

zeptojs内置Touch events方法,具体可以看http://zeptojs.com/#Touch events

看了一下zeptio新版的API,已经支持IE10以上浏览器,对zeptojs可以选择使用!

4、防止手机中网页放大和缩小

<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" />

5、apple-mobile-web-app-capable

apple-mobile-web-app-capable是设置Web应用是否以全屏模式运行。

语法:

<meta name="apple-mobile-web-app-capable" content="yes">

说明:

如果content设置为yes,Web应用会以全屏模式运行,反之,则不会。content的默认值是no,表示正常显示。你可以通过只读属性window.navigator.standalone来确定网页是否以全屏模式显示。

6、format-detection

format-detection 启动或禁用自动识别页面中的电话号码。

语法:

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

说明:

默认情况下,设备会自动识别任何可能是电话号码的字符串。设置telephone=no可以禁用这项功能。

7、html5调用安卓或者ios的拨号功能

html5提供了自动调用拨号的标签,只要在a标签的href中添加tel:就可以了。

如下:

 <a href="tel:4008106999,1034">400-810-6999 转 1034</a>

拨打手机直接如下

<a href="tel:15677776767">点击拨打15677776767</a>

8、html5GPS定位功能

详情介绍:http://www.w3school.com.cn/html5/html_5_geolocation.asp

9、上下拉动滚动条时卡顿、慢
body {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

Android3+和iOS5+支持CSS3的新属性为overflow-scrolling

10、禁止复制、选中文本
Element {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
   user-select: none;
}

解决移动设备可选中页面文本(视产品需要而定)

11、长时间按住页面出现闪退
element {
  -webkit-touch-callout: none;
}

12、iphone及ipad下输入框默认内阴影
Element{
  -webkit-appearance: none; 
}
13、ios和android下触摸元素时出现半透明灰色遮罩
Element {
  -webkit-tap-highlight-color:rgba(255,255,255,0)
}

设置alpha值为0就可以去除半透明灰色遮罩,备注:transparent的属性值在android下无效。

14、active兼容处理 即 伪类 :active 失效

方法一:body添加ontouchstart

<body ontouchstart="">

方法二:js给 document 绑定 touchstart 或 touchend 事件

<style>
a {
 color: #000;
}
a:active {
 color: #fff;
}
</style>
<a herf=foo >bar</a>
<script>
 document.addEventListener('touchstart',function(){},false);
</script>
15、动画定义3D启用硬件加速
Element {
  -webkit-transform:translate3d(0, 0, 0)
  transform: translate3d(0, 0, 0);
}

注意:3D变形会消耗更多的内存与功耗

16、Retina屏的1px边框
Element{
  border-width: thin;
}
17、webkit mask 兼容处理

某些低端手机不支持css3 mask,可以选择性的降级处理。

比如可以使用js判断来引用不同class:

if( 'WebkitMask' in document.documentElement.style){
  alert('支持mask');
} else {
  alert('不支持mask');
}
18、旋转屏幕时,字体大小调整的问题
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  -webkit-text-size-adjust:100%;
}
19、transition闪屏
/设置内嵌的元素在 3D 空间如何呈现:保留3D /

-webkit-transform-style: preserve-3d;
/ 设置进行转换的元素的背面在面对用户时是否可见:隐藏 /

-webkit-backface-visibility:hidden;
20、圆角bug

某些Android手机圆角失效

background-clip: padding-box;

后篇待续...

本文共 29 个回复

  • mindvault 2025/10/14 23:55

    **mindvault** mindvault is a premium cognitive support formula created for adults 45+. It’s thoughtfully designed to help maintain clear thinking

  • mind vault 2025/10/17 22:10

    **mind vault** mind vault is a premium cognitive support formula created for adults 45+. It’s thoughtfully designed to help maintain clear thinking

  • sugarmute 2025/10/19 01:36

    **sugarmute** sugarmute is a science-guided nutritional supplement created to help maintain balanced blood sugar while supporting steady energy and mental clarity.

  • glpro 2025/10/19 05:52

    **glpro** glpro is a natural dietary supplement designed to promote balanced blood sugar levels and curb sugar cravings.

  • prostadine 2025/10/19 09:36

    **prostadine** prostadine is a next-generation prostate support formula designed to help maintain, restore, and enhance optimal male prostate performance.

  • vitta burn 2025/10/19 15:14

    **vitta burn** vitta burn is a liquid dietary supplement formulated to support healthy weight reduction by increasing metabolic rate, reducing hunger, and promoting fat loss.

  • glucore 2025/10/19 15:20

    **glucore** glucore is a nutritional supplement that is given to patients daily to assist in maintaining healthy blood sugar and metabolic rates.

  • prodentim 2025/10/19 15:22

    **prodentim** prodentim an advanced probiotic formulation designed to support exceptional oral hygiene while fortifying teeth and gums.

  • synaptigen 2025/10/19 15:41

    **synaptigen** synaptigen is a next-generation brain support supplement that blends natural nootropics, adaptogens

  • nitric boost 2025/10/19 15:42

    **nitric boost** nitric boost is a dietary formula crafted to enhance vitality and promote overall well-being.

  • mitolyn 2025/10/19 18:10

    **mitolyn** mitolyn a nature-inspired supplement crafted to elevate metabolic activity and support sustainable weight management.

  • wildgut 2025/10/19 18:17

    **wildgut** wildgutis a precision-crafted nutritional blend designed to nurture your dog’s digestive tract.

  • zencortex 2025/10/19 18:29

    **zencortex** zencortex contains only the natural ingredients that are effective in supporting incredible hearing naturally.

  • yusleep 2025/10/19 19:19

    **yusleep** yusleep is a gentle, nano-enhanced nightly blend designed to help you drift off quickly, stay asleep longer, and wake feeling clear.

  • breathe 2025/10/20 02:46

    **breathe** breathe is a plant-powered tincture crafted to promote lung performance and enhance your breathing quality.

  • pinealxt 2025/10/20 15:26

    **pinealxt** pinealxt is a revolutionary supplement that promotes proper pineal gland function and energy levels to support healthy body function.

  • energeia 2025/10/20 15:52

    **energeia** energeia is the first and only recipe that targets the root cause of stubborn belly fat and Deadly visceral fat.

  • prostabliss 2025/10/20 16:45

    **prostabliss** prostabliss is a carefully developed dietary formula aimed at nurturing prostate vitality and improving urinary comfort.

  • boostaro 2025/10/20 17:12

    **boostaro** boostaro is a specially crafted dietary supplement for men who want to elevate their overall health and vitality.

  • potentstream 2025/10/20 21:53

    **potentstream** potentstream is engineered to promote prostate well-being by counteracting the residue that can build up from hard-water minerals within the urinary tract.

  • hepatoburn 2025/10/21 13:23

    **hepatoburn** hepatoburn is a premium nutritional formula designed to enhance liver function, boost metabolism, and support natural fat breakdown.

  • hepatoburn 2025/10/21 17:56

    **hepatoburn** hepatoburn is a potent, plant-based formula created to promote optimal liver performance and naturally stimulate fat-burning mechanisms.

  • flow force max 2025/10/22 03:05

    **flow force max** flow force max delivers a forward-thinking, plant-focused way to support prostate health—while also helping maintain everyday energy, libido, and overall vitality.

  • prodentim 2025/10/22 04:27

    **prodentim** prodentim is a forward-thinking oral wellness blend crafted to nurture and maintain a balanced mouth microbiome.

  • cellufend 2025/10/22 04:56

    **cellufend** cellufend is a natural supplement developed to support balanced blood sugar levels through a blend of botanical extracts and essential nutrients.

  • revitag 2025/10/22 06:07

    **revitag** revitag is a daily skin-support formula created to promote a healthy complexion and visibly diminish the appearance of skin tags.

  • neurogenica 2025/10/22 06:11

    **neurogenica** neurogenica is a dietary supplement formulated to support nerve health and ease discomfort associated with neuropathy.

  • sleeplean 2025/10/23 06:17

    **sleeplean** sleeplean is a US-trusted, naturally focused nighttime support formula that helps your body burn fat while you rest.

  • memorylift 2025/10/25 00:44

    **memorylift** memorylift is an innovative dietary formula designed to naturally nurture brain wellness and sharpen cognitive performance.