function dropMenu(obj) {
$(obj).each(function() {
var theSpan = $(this);
var theMenu = theSpan.find(".submenu");
var tarHeight = theMenu.height();
theMenu.css({height: 0, opacity: 0});
theSpan.hover(
function() {
$(this).addClass("selected");
theMenu.stop().show().animate({height: tarHeight, opacity: 1}, 400);
},
function() {
$(this).removeClass("selected");
theMenu.stop().animate({height: 0, opacity: 0}, 400, function() {
$(this).css({display: "none"});
});
}
);
});
}
$(document).ready(function() {
dropMenu(".drop-menu-effect");
});
*
回帖描述:*
链接类型:*
下载链接:*
描述:*
回帖描述:*
链接类型:*
阅读权限:*
下载链接:



聚优部落技术论坛 © 版权所有 鲁ICP备15007479号-6
Copyright(C)web.com, All Rights Reserved.
