让前端飞

web移动开发资源整理之常见bug的解决方案

2016-11-03  本文已影响191人  器宇轩昂1988

模拟按钮hover效果

移动端触摸按钮的效果,可明示用户有些事情正要发生,是一个比较好体验,但是移动设备中并没有鼠标指针,使用css的hover并不能满足我们的需求,还好国外有个激活css的active效果,代码如下:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta content="width=device-width,initial-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">
    <meta content="email=no" name="format-detection">
    <style type="text/css">
        a {
              -webkit-tap-highlight-color: rgba(0,0,0,0);
        } 
        .btn-blue{
            display:block;
            height:42px;
            line-height:42px;
            text-align:center;
            border-radius:4px;
            font-size:18px;
            color:#FFFFFF;
            background-color: #4185F3;
        } 
        .btn-blue:active{background-color: #357AE8;} 
    </style>
</head>
<body>
    <div class="btn-blue">按钮</div>
    <script type="text/javascript">document.addEventListener("touchstart", function(){}, true)</script>
</body>
</html>

兼容性ios5+、部分android 4+、winphone 8
要做到全兼容的办法,可通过绑定ontouchstart和ontouchend来控制按钮的类名

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta content="width=device-width,initial-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">
    <meta content="email=no" name="format-detection">
    <style type="text/css">
        a {-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
        .btn-blue {
            display: block;
            height: 42px;
            line-height: 42px;
            text-align: center;
            border-radius:4px;
            font-size: 18px;
            color: #FFFFFF;
            background-color: #4185F3;
        }
        .btn-blue-on {background-color: #357AE8;}
    </style>
</head>
<body>
<div class="btn-blue">按钮</div>
<script type="text/javascript">
    var btnBlue = document.querySelector(".btn-blue");
    btnBlue.ontouchstart = function(){this.className = "btn-blue btn-blue-on"} 
    btnBlue.ontouchend = function(){this.className = "btn-blue"}
</script>
</body>
</html>

屏幕旋转的事件和样式

window.orientation,取值:正负90表示横屏模式、0和180表现为竖屏模式;

window.onorientationchange = function(){
    switch(window.orientation){
        case -90:        
        case 90:            
            alert("横屏:" + window.orientation);            
            break;
        case 0:        
        case 180:             
            alert("竖屏:" + window.orientation);            
            break;    
}}
//竖屏时使用的样式
@media all and (orientation:portrait) {.css{}}
//横屏时使用的样式
@media all and (orientation:landscape) {.css{}}

audio元素和video元素在ios和andriod中无法自动播放

应对方案:触屏即播

$('html').one('touchstart',function(){ audio.play()})

可参考《无法自动播放的audio元素

摇一摇功能

HTML5 deviceMotion:封装了运动传感器数据的事件,可以获取手机运动状态下的运动加速度等数据。

手机拍照和上传图片

<input type="file">的accept 属性

<!-- 选择照片 -->
<input type=file accept="image/*">
<!-- 选择视频 -->
<input type=file accept="video/*">

使用总结:

消除transition闪屏

网络都是这么写的,但我并没有测试出来,应该只是兼容低版本的手机

.css{
/*设置内嵌的元素在 3D 空间如何呈现:保留 3D*/
 -webkit-transform-style: preserve-3d;
//设置进行转换的元素的背面在面对用户时是否可见:隐藏
-webkit-backface-visibility: hidden;
}

开启硬件加速

.css{
 -webkit-transform: translate3d(0, 0, 0);
 -moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}

设计高性能CSS3动画的几个要素

fixed定位的bug

播放视频不全屏

<video x-webkit-airplay="true" webkit-playsinline="true" preload="auto" autoplay src="http://"></video>
上一篇 下一篇

猜你喜欢

热点阅读