transition-duration", "10s" not work in my jquery

transition-duration", "10s" not work in my jquery

i have a code like this, i made that for change a navigation when > 370

  1. $(window).scroll(function () {
  2.    if ( $(window).scrollTop() > 370 ) {
  3.        $("#header").css("background", "#34495e", "transition-duration", "10s");
  4.    }

  5.    else {
  6.     $("#header").css("background", "white", "transition-duration", "10s");
  7.    }
  8. });

"transition-duration", "10s"  not work in my jquery, but another work well. thanks :)
i tried that at chromium and firefox