倾力总结40条常见的移动端Web页面问题解决方案(2)

<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;

21、顶部状态栏背景色

<meta content="black" />

说明:

除非你先使用apple-mobile-web-app-capable指定全屏模式,否则这个meta标签不会起任何作用。

如果content设置为default,则状态栏正常显示。如果设置为blank,则状态栏会有一个黑色的背景。如果设置为blank-translucent,则状态栏显示为黑色半透明。如果设置为default或blank,则页面显示在状态栏的下方,即状态栏占据上方部分,页面占据下方部分,二者没有遮挡对方或被遮挡。如果设置为blank-translucent,则页面会充满屏幕,其中页面顶部会被状态栏遮盖住(会覆盖页面20px高度,而iphone4和itouch4的Retina屏幕为40px)。默认值是default。

22、设置缓存

<meta http-equiv="Cache-Control" content="no-cache" />

手机页面通常在第一次加载后会进行缓存,然后每次刷新会使用缓存而不是去重新向服务器发送请求。如果不希望使用缓存可以设置no-cache。

23、桌面图标

<link href="https://www.jb51.net/touch-icon-iphone.png" /> <link sizes="76x76" href="https://www.jb51.net/touch-icon-ipad.png" /> <link sizes="120x120" href="https://www.jb51.net/touch-icon-iphone-retina.png" /> <link sizes="152x152" href="https://www.jb51.net/touch-icon-ipad-retina.png" />

iOS下针对不同设备定义不同的桌面图标。如果不定义则以当前屏幕截图作为图标。

上面的写法可能大家会觉得会有默认光泽,下面这种设置方法可以去掉光泽效果,还原设计图的效果!

<link href="https://www.jb51.net/touch-icon-iphone.png" />

图片尺寸可以设定为5757(px)或者Retina可以定为114114(px),ipad尺寸为72*72(px)

24、启动画面

<link href="https://www.jb51.net/start.png"/>

iOS下页面启动加载时显示的画面图片,避免加载时的白屏。

可以通过madia来指定不同的大小:

<!--iPhone--> <link href="https://www.jb51.net/apple-touch-startup-image-320x460.png" media="(device-width: 320px)" /> <!-- iPhone Retina --> <link href="https://www.jb51.net/apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" /> <!-- iPhone 5 --> <link media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="https://www.jb51.net/apple-touch-startup-image-640x1096.png"> <!-- iPad portrait --> <link href="https://www.jb51.net/apple-touch-startup-image-768x1004.png" media="(device-width: 768px) and (orientation: portrait)" /> <!-- iPad landscape --> <link href="https://www.jb51.net/apple-touch-startup-image-748x1024.png" media="(device-width: 768px) and (orientation: landscape)" /> <!-- iPad Retina portrait --> <link href="https://www.jb51.net/apple-touch-startup-image-1536x2008.png" media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" /> <!-- iPad Retina landscape --> <link href="https://www.jb51.net/apple-touch-startup-image-1496x2048.png"media="(device-width: 1536px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)"rel="apple-touch-startup-image" />

25、浏览器私有及其它meta

以下属性在项目中没有应用过,可以写一个demo测试以下!

QQ浏览器私有

全屏模式

<meta content="true">

强制竖屏

<meta content="portrait">

强制横屏

<meta content="landscape">

应用模式

<meta content="app">

UC浏览器私有

全屏模式

<meta content="yes">

强制竖屏

<meta content="portrait">

强制横屏

<meta content="landscape">

应用模式

<meta content="application">

其它

针对手持设备优化,主要是针对一些老的不识别viewport的浏览器,比如黑莓

<meta content="true">

微软的老式浏览器

<meta content="320">

windows phone 点击无高光

<meta content="no">

26、 IOS中input键盘事件keyup、keydown、keypress支持不是很好

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzpgsz.html