美文网首页
针对ios 页面滚动优化

针对ios 页面滚动优化

作者: 施主画个猿 | 来源:发表于2016-12-13 11:46 被阅读0次

    实现 丝般顺滑的 页面滚动 只适用于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 页面滚动优化

          本文链接:https://www.haomeiwen.com/subject/rmovmttx.html