아래 드롭 다운 메뉴에서 페이드 아웃하기 위해 아래 jQuery 스크립트를 사용합니다. 이 예에서 easing
은 어떻게 사용합니까?jQuery fadeIn 용이
$('ul.navbar-nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(50);
},
function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(50);
});
'.fadeIn ({duration : 50, easing : "swing"})'? –