我可以在滚动条中使用百分比作为值吗?

时间:2018-11-19 13:36:27

标签: javascript jquery html scroll scrolltop

我一般来说对HTML还是很陌生。我有以下代码,我想知道是否有任何使用百分比而不是固定值的方法。我已经搜索过,但是找不到简单的解决方案。

$(window).scroll(function () { 
    if ($(this).scrollTop() > 445 && $(this).scrollTop() < 1425 ) { 
        nav.addClass("f-nav");
    } else { 
        nav.removeClass("f-nav");
    } 

基本上我想要的是在滚动超过页面的80%之后而不是在1425px之后删除类,以便在修改窗口大小后也可以正常工作。

2 个答案:

答案 0 :(得分:4)

在文档中,scrollTop()需要一个表示像素位置的数字。

例如,您可以使用类似

来计算滚动达到80%的时间

伪代码:

if ((this.scrollTop + this.height) / content.height >= .8){
// do something
}

例如,请参见下面的工作片段

$("#container").scroll(function () { 
    if (($(this).scrollTop()+$(this).height())/$("#content").height() >= .8) { 
        $("#content").addClass("scrolled");
     }else{
       $("#content").removeClass("scrolled");
     }
     });
#container{
  width:80%;
  height:300px;
  border: solid 1px red;
  overflow:auto;
}

#content{
  width:80%;
  height:1000px;
  border: solid 1px gray;
  transition: background-color 1s;
}
#content.scrolled{
  background-color:blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>


<div id="container">
  <div id="content"></div>
</div>

答案 1 :(得分:0)

更新!我最终使用了$(document).height()而不是scrolltop,因为它使我可以轻松地引入一个百分比。所以我的代码最终看起来像这样:

$(window).scroll(function () { 
    if ($(this).scrollTop() > 445) { 
        nav.addClass("f-nav");
    if ($(this).scrollTop() > $(document).height()*0.64) 
        nav.removeClass("f-nav");
    }       
});

无论如何,谢谢您的帮助,我希望有人能找到这个有用的东西!