我打开菜单是通过jquery的animate做的,那些利用display的就不用说了$(document).ready(function(){
$(".menu").click(function(){
$(".menubox").animate({
height:'162px',
opacity:'1',
},300);
$(".menubox")addClass("menu-opened");
});
$(".menu-close").click(function(){
$(".menubox").animate({
height:'0px',
opacity:'0',
},300);
$(".menubox")removeClass("menu-opened");
});
});
添加回答
举报
0/150
提交
取消