针对ios 页面滚动优化

实现 丝般顺滑的 页面滚动 只适用于IOS 安卓无效 ,很简单 改造 body 和 html 的样式body, html { height: 100%;background-color:#fff; }
.IOSscroll { position : relative; overflow-y:auto; -webkit-overflow-scrolling:touch;}------------------------------------------------------------------------
FixIOSScroll: function () {
if (api.systemType == "ios") {
$("body,html").addClass("IOSscroll");
}
}

你可能感兴趣的:(针对ios 页面滚动优化)