完美解决微信下拉上拉

时间:2017-04-08 19:43:21   收藏:0   阅读:434
转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>
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!