苹果手机阻止整个网页拖动,阻尼回弹
css:
html,body {
overflow:hidden;
}
或者js控制:
$(window).bind(
'touchmove',
function(e){
e.preventDefault();
}
);
css:
html,body {
overflow:hidden;
}
或者js控制:
$(window).bind(
'touchmove',
function(e){
e.preventDefault();
}
);