您好,我定制了一个 2 行的 Bootstrap 导航栏(上半部分只是徽标和社交链接,下半部分是导航链接)。我试图在滚动时隐藏上半部分,但我找不到顺利完成它的方法。我认为下面的代码是我找到的最好的解决方案,但是现在transitionend 上的事件监听器不起作用,并且从未添加过“隐藏”类。
var scrollpos = window.scrollY;
var header = document.getElementById("header-up-section");
function add_class_on_scroll() {
header.classList.add('visuallyhidden');
header.addEventListener('transitionend', function(e) {
header.classList.add('hidden');
}, {
capture: false,
once: true,
passive: false
});
}
function remove_class_on_scroll() {
header.classList.remove('hidden');
setTimeout(function () {
header.classList.remove('visuallyhidden');
}, 20);
}
window.addEventListener('scroll', function(){
scrollpos = window.scrollY;
if(scrollpos > 20){
add_class_on_scroll();
}
else {
remove_class_on_scroll();
}
console.log(scrollpos);
});
*/and CSS :
#header-up-section.visuallyhidden {
opacity: 0;
}
#header-up-section.hidden {
display: none !important;
}
header-up-section 变为不可见,但 div 未隐藏。有什么想法可以帮忙吗?