meta基础知识
H5页面窗口自动调整到设备宽度,并禁止用户缩放页面
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
忽略将页面中的数字识别为电话号码
<meta name="format-detection" content="telephone=no" />
忽略Android平台中对邮箱地址的识别
<meta name="format-detection" content="email=no" />
当网站添加到主屏幕快速启动方式,可隐藏地址栏,仅针对ios的safari
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- ios7.0版本以后,safari上已看不到效果 -->
将网站添加到主屏幕快速启动方式,仅针对ios的safari顶端状态条的样式
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- 可选default、black、black-translucent -->
viewport模板
- <!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">
- <title>标题</title>
- <link rel="stylesheet" href="index.css">
- </head>
- <body>
- 这里开始内容
- </body>
- </html>
常见问题
移动端如何定义字体font-family
中文字体使用系统默认即可,英文用Helvetica
/* 移动端定义字体的代码 */
body{font-family:Helvetica;}
参考《移动端使用字体的思考》
移动端字体单位font-size选择px还是rem
对于只需要适配手机设备,使用px即可
对于需要适配各种移动设备,使用rem,例如只需要适配iPhone和iPad等分辨率差别比较挺大的设备
rem配置参考:
- html {font-size:10px}
- @media screen and (min-width:480px) and (max-width:639px) {
- html {
- font-size: 15px
- }
- }
- @media screen and (min-width:640px) and (max-width:719px) {
- html {
- font-size: 20px
- }
- }
- @media screen and (min-width:720px) and (max-width:749px) {
- html {
- font-size: 22.5px
- }
- }
- @media screen and (min-width:750px) and (max-width:799px) {
- html {
- font-size: 23.5px
- }
- }
- @media screen and (min-width:800px) and (max-width:959px) {
- html {
- font-size: 25px
- }
- }
- @media screen and (min-width:960px) and (max-width:1079px) {
- html {
- font-size: 30px
- }
- }
- @media screen and (min-width:1080px) {
- html {
- font-size: 32px
- }
- }
ios系统中元素被触摸时产生的半透明灰色遮罩怎么去掉
ios用户点击一个链接,会出现一个半透明灰色遮罩, 如果想要禁用,可设置-webkit-tap-highlight-color的alpha值为0,也就是属性值的最后一位设置为0就可以去除半透明灰色遮罩
a,button,input,textarea{-webkit-tap-highlight-color: rgba(0,0,0,0;)}
部分android系统中元素被点击时产生的边框怎么去掉
android用户点击一个链接,会出现一个边框或者半透明灰色遮罩, 不同生产商定义出来额效果不一样,可设置-webkit-tap-highlight-color的alpha值为0去除部分机器自带的效果
a,button,input,textarea{
-webkit-tap-highlight-color: rgba(0,0,0,0;)
-webkit-user-modify:read-write-plaintext-only;
}
-webkit-user-modify有个副作用,就是输入法不再能够输入多个字符
另外,有些机型去除不了,如小米2
对于按钮类还有个办法,不使用a或者input标签,直接用div标签
打电话发短信的怎么实现
打电话
<a href="tel:0755-10086">打电话给:0755-10086</a>
发短信,winphone系统无效
<a href="sms:10086">发短信给: 10086</a>
屏幕旋转的事件和样式
事件
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{}
- }
- audio元素和video元素在ios和andriod中无法自动播放
- 应对方案:触屏即播
- $(‘html‘).one(‘touchstart‘,function(){
- audio.play()
- })
摇一摇功能
HTML5 deviceMotion:封装了运动传感器数据的事件,可以获取手机运动状态下的运动加速度等数据。
手机拍照和上传图片
- <input type="file">的accept 属性
- <!-- 选择照片 -->
- <input type=file accept="image/*">
- <!-- 选择视频 -->
- <input type=file accept="video/*">
常用的移动端框架
zepto.js
语法与jquery几乎一样,会jquery基本会zepto~
最新版本已经更新到1.16
官网:http://zeptojs.com/
中文(非官网):http://www.css88.com/doc/zeptojs_api/
常使用的扩展模块:
浏览器检测:https://github.com/madrobby/zepto/blob/master/src/detect.js
tap事件:https://github.com/madrobby/zepto/blob/master/src/touch.js
iscroll.js
解决页面不支持弹性滚动,不支持fixed引起的问题~
实现下拉刷新,滑屏,缩放等功能~
最新版本已经更新到5.0
官网:http://cubiq.org/iscroll-5
underscore.js
笔者没用过,不过听说好用,推荐给大家~
该库提供了一整套函数式编程的实用功能,但是没有扩展任何JavaScript内置对象。
最新版本已经更新到1.8.2
官网:http://underscorejs.org/
滑屏框架
适合上下滑屏、左右滑屏等滑屏切换页面的效果
slip.js
iSlider.js
fullpage.js
flex布局
flex布局目前可使用在移动中,并非所有的语法都全兼容,但以下写法,效果良好~
- /* ============================================================
- flex:定义布局为盒模型
- flex-v:盒模型垂直布局
- flex-1:子元素占据剩余的空间
- flex-align-center:子元素垂直居中
- flex-pack-center:子元素水平居中
- flex-pack-justify:子元素两端对齐
- 兼容性:ios 4+、android 2.3+、winphone8+
- ============================================================ */
- .flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
- .flex-v{-webkit-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}
- .flex-1{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;}
- .flex-align-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;}
- .flex-pack-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
- .flex-pack-justify{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}
示例:两端对齐
- <!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">
- /* ============================================================
- flex:定义布局为盒模型
- flex-v:盒模型垂直布局
- flex-1:子元素占据剩余的空间
- flex-align-center:子元素垂直居中
- flex-pack-center:子元素水平居中
- flex-pack-justify:子元素两端对齐
- 兼容性:ios 4+、android 2.3+、winphone8+
- ============================================================ */
- .flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
- .flex-v{-webkit-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}
- .flex-1{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;}
- .flex-align-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;}
- .flex-pack-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
- .flex-pack-justify{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}
- </style>
- </head>
- <body>
- <div class="flex flex-pack-justify">
- <div>模块一</div>
- <div>模块二</div>
- <div>模块三</div>
- <div>模块四</div>
- </div>
- </body>
- </html>
页面模块命名
头:header
内容:content/container
尾:footer
导航:nav
侧栏:sidebar
栏目:column
页面外围控制整体布局宽度:wrapper
左右中:left right center
登录条:loginbar
标志:logo
广告:banner
页面主体:main
热点:hot
新闻:news
下载:download
子导航:subnav
菜单:menu
子菜单:submenu
搜索:search
友情链接:friendlink
页脚:footer
版权:copyright
滚动:scroll
小技巧:tips