需求:当鼠标放到父级菜单上面的时候,显示下方的子菜单。鼠标从子菜单或者父级菜单上面移开的时候,子菜单要收起来。最终效果如下:

PS:这样需求很常见,最常见的做法是li元素下面再嵌套一个Ul元素来包含子元素。这种做法用css就可以完全控制。但今天这个子菜单和导航栏是分开的。即到鼠标到产品上面的时候显示header-tags块。

  <ul class="header-nav">
<li class="nav-item home"><a href="@Url.Action("Index", "Home")">首页</a></li>
<li class="nav-item products" id="header_tags">
<a href="#">产品<span class="icon-caret-down"></span></a>
....
</li>
</ul>
<div class="header-tags">
<ul>
<li>
<img class="screening-img-normal" src="~/Content/static/all.png">
<img class="screening-img-hover" src="~/Content/static/all1.png">
<p>全部</p>
</li>
<li tagid="4">
<img class="screening-img-normal" src="~/Content/static/shafa.png">
<img class="screening-img-hover" src="~/Content/static/shafa1.png">
<p>沙发</p>
</li>
<li tagid="3">
<img class="screening-img-normal" src="~/Content/static/zuoyi.png">
<img class="screening-img-hover" src="~/Content/static/zuoyi1.png">
<p>座椅</p>
</li>
....
</div>

这无法用css完全控制(hover只能控制子元素或兄弟元素)。

/*父子*/
#a:hover #b{display: block}
/*兄弟*/
#a:hover + #b{display: block}

上面的情况就要用脚本了。这里涉及到#header_tags和.header-tags两个元素的移入移出。当鼠标移入#header_tags,.header-tags显示,当鼠标再移入.header-tags的时候不能立即触发#header_tags的moveout事件,而要保持tags继续显示。只有到鼠标从#header_tags和.header-tags离开后没有再进入才会把子菜单收起来。

  $(function () {
var tagsTime;
$(document).on('mouseover mouseout', '#header_tags', function(event){
var $headerTagsBox = $('.header-tags');
if (event.type == 'mouseover') {
clearTimeout(tagsTime);
$headerTagsBox.slideDown(300);
}
else if (event.type == 'mouseout') {
tagsTime = setTimeout(function(){
$headerTagsBox.slideUp(200);
}, 200);
}
});
$('.header-tags').hover(function(){
clearTimeout(tagsTime);
},function(){
var $me = $(this);
tagsTime = setTimeout(function(){
$me.slideUp(200);
}, 200);
}); });

如果这里没有清除定时器和加上延时执行,导航栏就会不断的闪动。根本无法点击。

最新文章

  1. PHP下的命令行执行 php -S localhost -t public
  2. 修改CMD的编码
  3. UVA 540 stl
  4. kafka配置
  5. 深入研究Block用weakSelf、strongSelf、@weakify、@strongify解决循环引用(上)
  6. sed命令详解及应用实例
  7. java中字符串的比较
  8. Android提高第二篇之SurfaceView的基本使用
  9. padding当高度用时出现的问题
  10. Python——pyqt5——各框架编程
  11. js 幻灯片
  12. [NOI 2015]品酒大会
  13. docker --Nexus仓库
  14. luogu3305/bzoj3130 费用流 (二分答案+dinic)
  15. Chrome——F12 谷歌开发者工具详解
  16. Linux 入门记录:十二、Linux 权限机制
  17. maven centos7 环境变量
  18. dbMigration .NET 数据同步迁移工具
  19. POI Excel 合并数据相同的行
  20. Storm Trident API

热门文章

  1. ssh链接数设置问题
  2. DSP(2) -- 离散时间信号的序列运算
  3. spring 事务:注解方式
  4. hashcode深入理解
  5. ready与onload区别一
  6. ServiceStack.OrmLite中的一些&quot;陷阱&quot;(2)
  7. The Strategy pattern
  8. 论ubuntu的作死技巧
  9. nginx启动脚本
  10. 线程池ExecutorService