菜单伸缩动画

 

方法:

$(document).ready(function(){
	$("dd:not(:first)").hide();
	$("dt a").click(function(){
		$("dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		return false;
	});
});
 

你可能感兴趣的:(动画)