transition-duration", "10s" not work in my jquery
i have a code like this, i made that for change a navigation when > 370
- $(window).scroll(function () {
- if ( $(window).scrollTop() > 370 ) {
- $("#header").css("background", "#34495e", "transition-duration", "10s");
- }
- else {
- $("#header").css("background", "white", "transition-duration", "10s");
- }
- });
"transition-duration", "10s" not work in my jquery, but another work well. thanks :)
i tried that at chromium and firefox