スティッキメニューでアニメーションに問題があります。 CSSは変更されますが、移行では変更されません。誰もがなぜアイデアを持っていますか?スティッキーメニューでCSSが遷移しない
$(window).scroll(function() {
if ($(this).scrollTop() > 50) {
$('.navbar-fixed-top').addClass("navbar-fixed-top-sticky");
} else {
$('.navbar-fixed-top').removeClass("navbar-fixed-top-sticky");
}
});
とCSS:
.navbar-fixed-top {
transition: 0.3 all ease;
-webkit-transition: 0.3 all ease;
}
.navbar-fixed-top.navbar-fixed-top-sticky {
background: #601a36;
height: 80px;
transition: 0.3 all ease-in-out;
-webkit-transition: 0.3 all ease-in-out;
}
遷移が動作していないされていますか?あなたは 'auto' ...または明記されていない値から遷移することはできません –
答えを受け入れない理由をメモに追加する必要があります。 @Neuropeptidula – eisbehr