The example in this article describes the blue horizontal secondary navigation menu effect implemented by jQuery css. Share it with everyone for your reference. The details are as follows:
This is a blue classic jQuery CSS horizontal secondary navigation menu, I believe you will like it, blue, a super classic style, taken from other websites. I think it’s very good, so I’d like to share it with everyone.
The screenshot of the running effect is as follows:
The online demo address is as follows:
http ://demo.jb51.net/js/2015/js-css-blue-line-2level-nav-menu-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> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>蓝色水平二级导航菜单</title> <style> *{font-size:12px; font-family:Tahoma, Verdana, Arial, Helvetica, sans-serif; } body{margin:0; padding:0; background:white; } img{border:0; } a:link,a:visited,a:active{text-decoration:none; } a:hover{text-decoration:underline; } /********** header **********/ .header{width:100%; background:url(images/header_bg.gif) #ffffff repeat-x 0 0; text-align:center; } .header .padder{width:910px; margin:0 auto; background:url(images/header_bg.gif) #ffffff repeat-x 0 0; padding-bottom:4px; text-align:left; } .header .padder .nav{background:url(images/vertical.gif) repeat-x 0 -36px; height:36px; } .header .padder .navLeftBg{background:urlvertical.gif) no-repeat 0 0; height:36px; } .header .padder .navRightBg{background:url(images/icons.gif) no-repeat right -146px; height:36px; } .header .padder .nav .mainNav{padding-left:24px; position:absolute; } .header .padder .nav .mainNav a:link, .header .padder .nav .mainNav a:visited,.header .padder .nav .mainNav a:active{width:90px; height:36px; display:inline-block; text-align:center; color:#ffffff; font-weight:bold; font-size:14px; line-height:36px; margin-left:11px; } .header .padder .nav .mainNav a:hover{text-decoration:none; } .header .padder .nav .mainNav a.actived:link,.header .padder .nav .mainNav a.actived:visited,.header .padder .nav .mainNav a.actived:hover,.header .padder .nav .mainNav a.actived:active{background:url(images/icons.gif) no-repeat 0 -27px; color:#000000; } .header .padder .secondNav{line-height:21px; text-align:left; } .header .padder .secondNav a{color:#266392; display:in
The above is the content of the blue horizontal secondary navigation menu effect code_jquery implemented by jQuery css. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!