博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery滑动导航菜单
阅读量:5936 次
发布时间:2019-06-19

本文共 1677 字,大约阅读时间需要 5 分钟。

js:

$(function(){	$("ul.sub").parent().append("");	$("ul.sub ul").parent().append("");	$('#nav ul').closest('li').hover(function(){		$(this).find("span").addClass("arrow");		$(this).find("em").removeClass("arrow");		$(this).children("ul").stop(true,true).slideDown('fast').show();		$("#nav ul>li").hover(function(){$(this).addClass("hover")},		function(){$(this).removeClass("hover")});	},function(){		$(this).children("ul").stop(true,true).hide();		$(this).find("span").removeClass("arrow");		$(this).find("em").addClass("arrow");	})})

  

下拉导航菜单

  

转载于:https://www.cnblogs.com/xupeiyu/p/3981306.html

你可能感兴趣的文章
python 中的字符和字符串
查看>>
C#Winform限制Textbox只能输入数字
查看>>
USACO 3.1.4 [Shaping Regions]
查看>>
jenkins集成ansible注意事项Failed to connect to the host via ssh.
查看>>
EL表达式经典用法
查看>>
java.lang.NoClassDefFoundError: javax/mail/Authenticator
查看>>
联想集团涨超7% 杨元庆持股比例升至8.12%
查看>>
各省光伏十三五规划汇总:总规模将超130GW
查看>>
Apache Storm 官方文档 —— 常用模式
查看>>
聊聊JVM的年轻代
查看>>
lvm逻辑卷管理
查看>>
网页内嵌播放器
查看>>
VS2010不能断点/下断的问题
查看>>
[Android]权限处理
查看>>
Ubuntu修改时区
查看>>
JavaScript中核心概念Scope理解
查看>>
Mybatis 常用的几个对象
查看>>
参加微软 MVP 之夜暨微软技术与生态大会
查看>>
屌丝气质难掩,逼人逃离么?
查看>>
OFBiz + Opentaps 目录管理 四. 产品(一)定义产品
查看>>