Is there a way to fix a page in mobile so that it doesn't move around? I'm trying to pick up the coordinates of when the user touchstarts and touchends but the page moves around, when you touch/swipe etc. You can see it here:
有没有办法在移动设备中修复页面,以便它不会移动?我正在尝试获取用户触摸和触摸时的坐标,但是当您触摸/滑动时页面会四处移动。您可以在此处看到它:
http://machinas.com/wip/esprit/Projects-2014/xmas-game-2014/interaction5/
I'm testing on Iphone5
我正在测试Iphone5
1 个解决方案
#1
0
Try setting overflow to hidden on both the document and the body like this:
尝试将溢出设置为隐藏在文档和正文上,如下所示:
html, body {
overflow: hidden;
}
#1
0
Try setting overflow to hidden on both the document and the body like this:
尝试将溢出设置为隐藏在文档和正文上,如下所示:
html, body {
overflow: hidden;
}