有一段时间没有做移动端的东西了,最近又搞了一个页面,是比较热门的滑动效果的。用到了onepagescroll,发现这个插件虽好,但纯JS版的没有方法,另外没有lazyload。
1.移动端头部:参考之前
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0"/><!-- 手机视图 -->
<meta content="telephone=no" name="format-detection" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- UC默认竖屏 ,UC强制全屏 -->
<meta name="full-screen" content="yes"/>
<meta name="browsermode" content="application"/>
<!-- QQ强制竖屏 QQ强制全屏 -->
<meta name="x5-orientation" content="portrait"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="x5-page-mode" content="app"/>
2.提醒竖屏查看
<div class="tip">为了更好的体验,请将手机/平板竖过来!</div>
CSS代码:参考flexbox案例
/*垂直水平居中对齐*/
.tip {
background:#000;
color:#fff;
position:absolute;
left:0;
top:0;
bottom:0;
width:100%;
height:100%;
/*border: 1px solid;*/
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-justify-content: center;
-moz-justify-content: center;
justify-content: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-align-items: center;
-moz-align-items: center;
align-items: center;
}
/*竖屏*/
@media screen and (orientation:portrait){
.tip{ display:none}
}
/*横屏*/
@media screen and (orientation:landscape){
.tip{ display:-webkit-box; }
}
3.元素垂直居中之translate3d
垂直居中的方法有多种,可以使用table和table-cell,可以使用上面提到的flexbox,可以使用常规的position和margin负值的方法。今天提供另外一种
.box-center{text-align:center; position:absolute; left:50%; top:50%; -webkit-transform:translate3d(-50%,-50%,0); transform:translate3d(-50%,-50%,0); width:100%;}
兼容移动端Android4.1和iOS7.1及以下,兼容ie10,请看这里
4.当页面字符编码为utf-8,而表单的js是gb2312时,地址是从外部引用的,无法更改的情况下:
<form accept-charset="gb2312">
</form>
<script charset="gb2312" href="https://qdkfweb.cn/js/form.js" type="text/javascript"></script>
通过定义form接收的字符编码来统一,从而使得接收到的数据不是乱码。
还有onepagescroll、重力感应、lazyload等,不一一说明了。