注册 登录 充值会员 退出
联系客服 毕业设计 java源码 PHP源码
充值

jQuery滑动手风琴二级分类菜单代码

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2023-04-01
jQuery滑动手风琴二级分类菜单代码
jQuery滑动手风琴二级分类菜单代码是一款手风琴效果的适合做网站首页产品分类导航js代码。


js代码

<script type="text/javascript">
$(document).ready(function(e) {

	var currentLi =  $(".indexTypes ul li");
	$(currentLi.eq(0)).stop().animate({"width":"510px"},600);
	$(currentLi.eq(0)).children(".con").animate({"left":"193px"},600);
	
	$(currentLi).hover(function(e){
		$(this).siblings("li").stop().animate({"width":"193px"},600);
		$(this).siblings("li").removeClass("current");
		$(this).addClass("current");
		$(this).stop().animate({"width":"510px"},600);  
	});
	
});
</script>

关注公众号,免费赠送安装视频教程、环境和学习视频,后面会不断更新。