码迷,mamicode.com
首页 > 移动开发 > 详细

h5页面在移动端需要注意的一些事情

时间:2017-07-05 13:39:54      阅读:1577      评论:0      收藏:0      [点我收藏+]

标签:correct   nsf   input   想去   ane   target   spin   neu   忽略   

H5页面在移动端无法满屏自适应窗口,怎么办?

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

 

H5页面在移动端字体应该怎么设置?

1.iOS 系统

默认中文字体是Heiti SC

默认英文字体是Helvetica

默认数字字体是HelveticaNeue

无微软雅黑字体

2.Android 系统

默认中文字体是Droidsansfallback

默认英文和数字字体是Droid Sans

无微软雅黑字体 

3.Winphone 系统

默认中文字体是Dengxian(方正等线体)

默认英文和数字字体是Segoe

无微软雅黑字体

各个手机系统有自己的默认字体,且都不支持微软雅黑,如无特殊需求,手机端无需定义中文字体,使用系统默认英文字体和数字字体可使用 Helvetica ,三种系统都支持。

font-family:Helvetica;

 

点击链接就可以拨打电话,怎么办?

<a href="tel:136****5546">咪咕阅读客服电话</a>

 

点击链接就可以发送短信,怎么办?

<a href="sms:136****5546">咪咕阅读客服短信</a>

 

H5页面的数字不想识别为电话号码,怎么办?

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

 

H5页面想忽略Android平台中对邮箱地址的识别,怎么办?

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

 

不想显示webkit的滚动条,怎么办?

element::-webkit-scrollbar{ display: none;}

H5页面的内容想不被人选中,怎么办?

-webkit-user-select: none;user-select: none;

 

H5页面想禁止长按链接或长按图片后弹出菜单,怎么办?

-webkit-touch-callout: none;

想取消IOS里Button、Input上的默认样式,怎么办?

-webkit-appearance: none;

 

想在Android里H5页面touch时没有蓝色的边框与遮罩,怎么办?

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

多张图片放置在一起,不想有4PX的空隙,怎么办?

img{display:block};

img{float:left};

img{vertical-align:top} 

 

想改变Input里 placeholder属性的样式,怎么办?

::-webkit-input-placeholder{color:#ccc}

 

H5页面input type=”num”时想去掉右边的上下箭头,怎么办?

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none !important; margin: 0;}

H5页面加载的图片太大了,怎么办?

JPG图片用JPEGmini压缩,PNG可在线用http://tinypng.org/压缩

在iOS系统中键盘输入时不想首字母为大写,怎么办?

<input type="text" autocapitalize="off" />

在IOS系统中键盘输入关闭自动修正,怎么办?

<input type="text" autocorrect="off" /> 

屏幕旋转横屏竖屏切换时,想禁止文本缩放,怎么办?

-webkit-text-size-adjust: 100%;

H5页面想有快速回弹滚动的效果,怎么办?

overflow: auto; /* auto | scroll */

-webkit-overflow-scrolling: touch;

屏幕旋转横屏竖屏切换时想支持有不同的事件,怎么办?

事件

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

window.onorientationchange = function(){

    switch(window.orientation){

    case -90:

    case 90:

        alert("横屏:" + window.orientation);

    case 0:

    case 180:

        alert("竖屏:" + window.orientation);

        break;

    }

样式

//竖屏时使用的样式

@media all and (orientation:portrait) {

    .css{}

}

//横屏时使用的样式

@media all and (orientation:landscape) {

    .css{}

}

Android 上想不显示语音输入按钮,怎么办?

input::-webkit-input-speech-button {display: none}

想开发H5摇一摇功能,怎么办?

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

 

https://github.com/FrontEndRoad/HTML5-FAQ

 

h5页面在移动端需要注意的一些事情

标签:correct   nsf   input   想去   ane   target   spin   neu   忽略   

原文地址:http://www.cnblogs.com/cuikaitong/p/7120286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!