0

在 Android 设备上查看以下演示:

滚动演示

有一个稍微偏离屏幕的红色框。当垂直间隔不存在时,您不能向任何方向拖动页面。当存在分隔符并占用比窗口更多的垂直空间时,您可以向下拖动页面(如预期的那样),但是现在您也可以水平拖动。

这似乎只发生在 Android 浏览器上。关于这里发生了什么的任何线索?我想在保持垂直滚动的同时完全防止水平滚动。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" id="viewportMobile" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <link rel="stylesheet" type="text/css" href="test.css" />
    <style>
      html,body {
        overflow: hidden;
      }
      body {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: visible;
        overflow-x: hidden;
      }
      .offscreen {
        position: absolute;
        right: -20px;
        background-color: #ed0021;
        padding: 20px 20px 20px 20px;
      }
    </style>
    <script>
      var showSpacer=true;
      function toggleSpacer() {
        showSpacer = !showSpacer;
        var spacer = document.getElementById('spacer');
        spacer.style.display = showSpacer ? 'block' : 'none';
      }
    </script>

  </head>
  <body>
    <div class="toggle-button" onClick="toggleSpacer()">Toggle Spacer</div>
    <div class="offscreen"></div>
    <div id="spacer" style="width:50px; height:2000px; background-color:#444">
    </div>
  </body>
</html>

4

1 回答 1

0

删除溢出属性并将位置更改为 body 元素的相对位置对我有用。它应该如下所示:

body {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

编辑:错误的复制/粘贴

编辑2:更新的答案

于 2014-10-22T12:55:13.233 回答