屏蔽ios弹性滑动

来源:互联网 发布:js drag拖拽 编辑:程序博客网 时间:2024/06/05 12:56

1

//判断手机类型window.onload = function () { //alert($(window).height()); var u = navigator.userAgent; if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {//安卓手机 } else if (u.indexOf('iPhone') > -1) {//苹果手机 //屏蔽ios下上下弹性 $(window).on('scroll.elasticity', function (e) {  e.preventDefault(); }).on('touchmove.elasticity', function (e) {  e.preventDefault(); }); } else if (u.indexOf('Windows Phone') > -1) {//winphone手机 } //预加载 loading();}

2

$(window).on('scroll.elasticity', function (e) {  e.preventDefault();}).on('touchmove.elasticity', function (e) {  e.preventDefault();});
原创粉丝点击