最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - prevent window from dragging in ios5 mobile browser - Stack Overflow

programmeradmin1浏览0评论

I'm working on an iPad browser games and can't seem to lock the window. I've prevented scroll bars using typical overflow techniques, but the entire window still drags up and down (the new rubberband - type effect)

Is there a way to remove this window dragging?

Thannks

I'm working on an iPad browser games and can't seem to lock the window. I've prevented scroll bars using typical overflow techniques, but the entire window still drags up and down (the new rubberband - type effect)

Is there a way to remove this window dragging?

Thannks

Share Improve this question asked Jan 8, 2012 at 22:38 bmanderscheidbmanderscheid 1252 silver badges9 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

Bind to touchmove and preventDefault action which is scrolling

document.body.addEventListener('touchmove', function (ev) { 
  ev.preventDefault();
});

Or with jQuery

$('body').bind('touchmove', function (ev) { 
  ev.preventDefault();
});

EDIT: I've actually e across another solution that may be even easier, try this

body { overflow: hidden; }
发布评论

评论列表(0)

  1. 暂无评论