所以基本上我想在用戶向下滾動一小段並添加另一個類來改變它的外觀之後從'標題'中刪除類。基於垂直滾動的jQuery添加/刪除類?
試圖找出這樣做的最簡單的方法,但我不能讓它工作。
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll <= 500) {
$(".clearheader").removeClass("clearHeader").addClass("darkHeader");
}
}
CSS
.clearHeader{
height: 200px;
background-color: rgba(107,107,107,0.66);
position: fixed;
top:200;
width: 100%;
}
.darkHeader { height: 100px; }
.wrapper {
height:2000px;
}
HTML
<header class="clearHeader"> </header>
<div class="wrapper"> </div>
我知道我在做一些很基本的錯誤。
嘗試https://github.com/virgiliud/scrollClass.js – CyberJunkie