Home > Article > Web Front-end > The second-level slide-down menu effect of web pages implemented by jQuery CSS_jquery
The example in this article describes the secondary slide-down menu effect of web pages implemented by jQuery CSS. Share it with everyone for your reference. The details are as follows:
This is a simple jQuery CSS secondary slide-down menu for web pages. It is for handwriting practice. You can use it to beautify it if necessary. The basic animation effects, menu slide-down effects and gradient effects have been made. It can be used under IE. The performance is good. I found that the menu flickers under Firefox. I will continue to correct it when I have time. Thank you everyone for your support.
The screenshot of the running effect is as follows:
The online demo address is as follows:
http://demo.jb51.net/js/2015/jquery-css-web-2level-menu-style-codes/
The specific code is as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS jQuery HTML二级下滑菜单</title> <style type="text/css"> body,ul,li,a{margin: 0;padding: 0;font:16px "微软雅黑";} ul,li{list-style-type: none} .menu{width: 270px;height: 30px;line-height: 30px;background: #0f67a1} .menu li{width: 120px;float: left;display: inline;position: relative;z-index: 10;text-align: center;} .menu li: hover{background: #426d9c;} .menu .menuUl{width: 120px;height: auto;display: none;background: #426d9c;position: absolute;z-index: 20;left: 25px;top: 30px;padding:3px;} .menuUl li{width: 100%;float: left;text-align: left;} a{color: #eee;text-decoration: none} a: hover{color: #000;text-decoration: none} </style> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $(".menu li").hover(function() { $(this).find(".menuUl").show('50'); }, function() { $(this).find(".menuUl").hide('50'); }); }) </script> </head> <body> <ul class="menu"> <li><a href="">源码类</a> <ul class="menuUl"> <li><a href="#" >论坛源码</a></li> <li><a href="#" >博客源码</a></li> <li><a href="#" >Ajax源码</a></li> </ul> </li> <li><a href="">特效类</a> <ul class="menuUl"> <li><a href="#" >导航菜单</a></li> <li><a href="#" >表单效果</a></li> <li><a href="#" >HTML5特效</a></li> <li><a href="#" >jQuery特效</a></li> </ul> </li> </ul> </body> </html>
I hope this article will be helpful to everyone’s jquery programming design.