你怎么防止滚动? (移动设备中的HTML5游戏)

时间:2015-12-17 04:29:02

标签: javascript html5 mobile scroll

如何防止在移动设备中滚动?

我已经尝试过这三种解决方案(但仍然没有工作):

  1. 在CSS中

    body {
      overflow: hidden;
      position: fixed;   (tried absolute too)
      top:0;
      bottom:0;
      left:0;
      right:0;
      margin:0;
      width:100%;
      height:100%;
    }
    
  2. <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1, user-scalable=0" />
    
  3. 另外:我无法使用:

    document.body.addEventListener("touchmove", function(e){e.preventDefault();});
    
  4. 因为其他要求。

    请帮忙。非常感谢提前。

0 个答案:

没有答案