我使用名为custom.css的辅助文件来覆盖引导程序代码,我想知道如何创建仅在我的网站访问者不在页面顶部时激活的代码。
到目前为止,我使用bootstrap提供的默认代码创建了一个透明的导航栏。我唯一需要做的就是将其设置为在访问者向下滚动时执行:background-color: #color
。
当我在页面顶部时,导航栏是透明的,但当我向下滚动时,它变得不透明。
答案 0 :(得分:31)
好的,你需要以下代码来实现这个效果:(我将使用jQuery,因为它是bootstrap支持的语言)。
jQuery的:
/**
* Listen to scroll to change header opacity class
*/
function checkScroll(){
var startY = $('.navbar').height() * 2; //The point where the navbar changes in px
if($(window).scrollTop() > startY){
$('.navbar').addClass("scrolled");
}else{
$('.navbar').removeClass("scrolled");
}
}
if($('.navbar').length > 0){
$(window).on("scroll load resize", function(){
checkScroll();
});
}
您也可以使用ScrollSpy
执行此操作。
和你的CSS(例子):
/* Add the below transitions to allow a smooth color change similar to lyft */
.navbar {
-webkit-transition: all 0.6s ease-out;
-moz-transition: all 0.6s ease-out;
-o-transition: all 0.6s ease-out;
-ms-transition: all 0.6s ease-out;
transition: all 0.6s ease-out;
}
.navbar.scrolled {
background: rgb(68, 68, 68); /* IE */
background: rgba(0, 0, 0, 0.78); /* NON-IE */
}
答案 1 :(得分:0)
$(document).ready(function() {
$(window).scroll(function() {
if($(this).scrollTop() > height) {
$('.navbar').addClass('scrolled');
} else {
$('.navbar').removeClass('scrolled');
}
});
});
答案 2 :(得分:0)
为避免使用滚动,加载和调整大小事件而导致性能下降,现在可以使用Intersection Observer API。
它将允许您检测页面上的内容是否已滚动,并相应地设置导航栏的透明度(通过添加或删除类)。
请查看此answer,以了解更多详细信息。