首页 > 微信 > 详细

完美解决微信下拉上拉

时间:2017-04-08 19:43:21      阅读:413      评论:0      收藏:0      [点我收藏+]
转http://note.youdao.com/share/?id=f13df2c846cac5d4f0e24a715d8372a6&type=note#/
完美解决微信下拉上拉回弹
1、使用jroll.js完美解决,下载jroll.js。
2、DOM结构为:
技术分享
class container 为滑动页面
3、添加css
#wrapper {
            position: absolute;
            top: 44px;
            bottom: 0;
            width: 100%;
      }
4、编写js
<script src="js/jroll.js"></script>
<script>
//阻止浏览器默认事件
document.addEventListener(‘touchmove‘, function(e) {
e.preventDefault()
}, false);
var jroll = new JRoll("#wrapper", {
id: "demo1"
});
</script>

完美解决微信下拉上拉

原文:http://www.cnblogs.com/wwsb/p/6682625.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!