当前位置:   article > 正文

解决页面滚动条出现和消失的过程页面会横向移动的问题_css滚动条出现和消失页面动一下

css滚动条出现和消失页面动一下

平时我们看一些网页刚开始加载的时候没有多少内容,页面也没有出现纵向滚动条,当我们点击加载更多,页面内容高度超过一屏于是出现滚动条,这个时候,页面会向左横向移动一段距离,正好是滚动条的宽度,这是因为滚动条的出现占据了原本属于内容显示区的空间,自然内容就会被挤到左边去,毕竟这是一个很不好的体验,那么有什么好的解决方案呢?
这里我们可以借助css3 的语法:
calc(): 用于计算,IE9+浏览器支持该属性。
vw:浏览器窗口宽度的相对单位,这个宽度是包含滚动条的
100%:这个宽度是页面内容去容器的宽度,不包括滚动条
于是:

.wrap-outer{
    margin-leftcalc(100vw - 100%)
}
  • 1
  • 2
  • 3

可以自行测试

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<style>
.wrap-outer{
    margin-left:calc(100vw - 100%)
}
</style>
<body>
    <button id='btn'>改变高度</button>
    <div class='wrap-outer' >
     <div id='box' style="width:900px;margin:0 auto;height:500px;background: #999"></div> 
    </div>


</body>
<script>
    let len = true
    document.getElementById('btn').onclick = function() {
        if(len) {
           document.getElementById('box').style.height = '2000px' 
           len = !len
        } else {
           document.getElementById('box').style.height = '500px' 
           len = !len
        }

    }
</script>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

升级版稳定方案

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<style>
    html {
      overflow-y: scroll;
    }

    :root {
      overflow-y: auto;
      overflow-x: hidden;
    }

    :root body {
      position: absolute;
    }

    body {
      width: 100vw;
      overflow: hidden;
    }
</style>
<body>
    <button id='btn'>改变高度</button>
    <div class='wrap' >
     <div id='box' style="width:900px;margin:0 auto;height:500px;background: #999"></div> 
    </div>


</body>
<script>
    let len = true
    document.getElementById('btn').onclick = function() {
        if(len) {
           document.getElementById('box').style.height = '2000px' 
           len = !len
        } else {
           document.getElementById('box').style.height = '500px' 
           len = !len
        }

    }
</script>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/771413
推荐阅读
相关标签
  

闽ICP备14008679号