gpt4 book ai didi

javascript - 在 WordPress 的向下滚动事件中隐藏 div

转载 作者:行者123 更新时间:2023-11-28 09:03:54 25 4
gpt4 key购买 nike

我试图在向下滚动事件中隐藏#header,然后在页面向上滚动时重新出现。

页面链接:- http://elementsmart.com/product-category/jewellery/

我使用的 JavaScript 代码

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"   type="text/javascript">
$('#primary').scroll(function(){
if($(this).scrollTop() > 300) $('#header').fadeOut('slow');
if($(this).scrollTop() < 300) $('#header').fadeIn('slow');
});
</script>

CSS

#header-container { 
position:fixed !important;
margin-left:1.6% !important;
z-index:999 !important;
}

当有人滚动时,主要需要隐藏标题。

在 jsfiddle 上尝试似乎工作完美,但在页面上现在显示。

有人可以指导一下吗?

最佳答案

即将完成,更改

$('#primary').scroll(function(){

$(window).scroll(function(){

同时用以下内容包装您的代码

$(function(){
//your code here
});

关于javascript - 在 WordPress 的向下滚动事件中隐藏 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17359599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com