我的導航欄無法更改滾動顏色,我已經在使用此腳本。請幫我滾動時更改導航欄顏色
<script>
$(document).ready(function(){
$(window).scroll(function() {
if ($(document).scrollTop() > 50) {
$(".navbar-fixed-top").css("background-color", "#f8f8f8");
} else {
$(".navbar-fixed-top").css("background-color", "transparent");
}
});
});
</script>
我使用引導
你也可以添加到您的html? – Jonas