Horizontal layout multi-level web menu effect implemented by jquery CSS
This article mainly introduces the horizontal layout multi-level web menu effect implemented by jquery CSS, and involves the implementation techniques of dynamic transformation effect of jquery page element attributes. It is of great practical value. Friends in need can refer to it. The details are as follows:
The common navigation menu on web pages implemented by Jquery and CSS demonstrated here supports two levels of form, blue style, and supports up to level two. The code may need to be modified for level three. This menu is quite rectangular, relatively practical, and suitable for many types of websites. I hope you will like it.
A screenshot of the running effect is as follows:
The online demo address is as follows:
http://demo.jb51.net/ js/2015/jquery-css-scroll-nav-menu-style-codes/
The specific codes are 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>蓝色带阴影超酷的css+js导航菜单代码</title> <style> body {margin:0px;} a:link {text-decoration: none;} a:visited {text-decoration: none;} a:hover {text-decoration: none;} a:active {text-decoration: none;} #nav_wrap {width:960px;} #nav{background:url(images/nav_bg1.gif) repeat-x bottom; height:49px; position:relative; width:950px; margin:20px auto;} #nav .l{background:url(images/nav_l1.gif) no-repeat bottom; height:49px; width:28px; float:left} #nav li {float:left; list-style:none;text-align:center;font-size:14px; } #nav li .v a{width:108px;height:49px; line-height:49px; display:block; color:#FFF;float:left; font-family:Arial,Verdana,Tahoma,"宋体"; } #nav li .v a:hover,#nav li .v .sele{background:url(images/nav_hover1.gif) no-repeat bottom;color:#fff;height:49px;line-height:49px; font-size:14px;} #nav .kind_menu {height:30px;*height:29px;line-height:30px;vertical-align:middle; position:absolute;top:46px;*top:48px;left:70px;width:880px; text-align:left; display:none;color:#000;font-size:12px;} #nav .kind_menu a {color:#000; float:left; text-align:center; width:90px; font-family:Arial,Verdana,Tahoma,"宋体";font-size:12px;} #nav .kind_menu a:hover {color:#000;border-bottom:2px #222b8e solid;} #nav .kind_menu span {font-size:10px; color:#000; line-height:30px; *line-height:26px; float:left } </style> <SCRIPT src="jquery-1.6.2.min.js" type=text/javascript></SCRIPT> </head> <body style="text-align:center"> <p id=nav_wrap> <p id=nav> <p class=l></p> <UL class=c> <LI><SPAN class=v><A href="#" target="_blank">首页</A></SPAN> <p class=kind_menu style="LEFT:50px">欢迎您访问脚本之家,我们为您提供最优质的网络营销服务! </p></LI> <LI><SPAN class=v><A href="#">特惠套餐</A></SPAN> <p class=kind_menu style="LEFT: 40px"> <A href="#">电信特惠套餐</A> <SPAN>|</SPAN> <A href="#">智能双线套餐</A> </p></LI> <LI><SPAN class=v><A href="#">域名频道</A></SPAN> <p class=kind_menu> <A href="#">英文域名</A><SPAN>|</SPAN> <A href="#">中文域名</A><SPAN>|</SPAN> <A href="#">通用网址</A><SPAN>|</SPAN> <A href="#">域名交易</A><SPAN>|</SPAN> <A href="#">域名帮助</A><SPAN>|</SPAN> <A href="#">智能加速</A> </p></LI> <LI><SPAN class=v><A href="#">脚本下载</A></SPAN> <p class=kind_menu style="LEFT: 40px"> <A href="#">网络营销外包</A> <SPAN>|</SPAN> <A href="#">网页特效代码</A> </p></LI> <LI><SPAN class=v><A href="#">网页特效</A></SPAN> <p class=kind_menu style="LEFT: 40px"> <A href="#">网络外包</A> <SPAN>|</SPAN> <A href="#">网络营销</A> <SPAN>|</SPAN> <A href="#">特效代码</A> </p></LI> <LI><SPAN class=v><A href="http://www.baidu.com">百度一下</A></SPAN> <p class=kind_menu style="LEFT: 40px"> <A href="#">网络外包</A> <SPAN>|</SPAN> <A href="#">营销外包</A> <SPAN>|</SPAN> <A href="#">网页特效</A> </p></LI> </UL> </p><!--nav--> </p><!--nav_wrap--> <SCRIPT type=text/javascript> var site_url = window.location.href.toLowerCase(); switch (true) { default : $("#nav li").attr("class",""); $("#nav li").eq(0).attr("class","nav_lishw"); $(".nav_lishw .v a").attr("class","sele"); $(".nav_lishw .kind_menu").show(); } $("#nav li").hover( function(){ clearTimeout(setTimeout("0")-1); $("#nav .kind_menu").hide(); $("#nav li .v .sele").attr("class","shutAhover"); $(this).attr("id","nav_hover") $("#nav_hover .v a").attr("class","sele"); $("#nav_hover .kind_menu").show(); }, function(){ if($(this).attr("class") != "nav_lishw"){ $("#nav_hover .v .sele").attr("class",""); $("#nav_hover .kind_menu").hide(); } $(this).attr("id","") $("#nav li .v .shutAhover").attr("class","sele"); setTimeout(function(){ $(".nav_lishw .kind_menu").show(); $(".nav_lishw .v a").attr("class","sele"); },50); } ); </SCRIPT> </body> </html>
The above is the entire content of this chapter, more related For tutorials, please visit jQuery Video Tutorial!

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Python is more suitable for data science and machine learning, while JavaScript is more suitable for front-end and full-stack development. 1. Python is known for its concise syntax and rich library ecosystem, and is suitable for data analysis and web development. 2. JavaScript is the core of front-end development. Node.js supports server-side programming and is suitable for full-stack development.

JavaScript does not require installation because it is already built into modern browsers. You just need a text editor and a browser to get started. 1) In the browser environment, run it by embedding the HTML file through tags. 2) In the Node.js environment, after downloading and installing Node.js, run the JavaScript file through the command line.

How to send task notifications in Quartz In advance When using the Quartz timer to schedule a task, the execution time of the task is set by the cron expression. Now...

How to obtain the parameters of functions on prototype chains in JavaScript In JavaScript programming, understanding and manipulating function parameters on prototype chains is a common and important task...

Analysis of the reason why the dynamic style displacement failure of using Vue.js in the WeChat applet web-view is using Vue.js...

How to make concurrent GET requests for multiple links and judge in sequence to return results? In Tampermonkey scripts, we often need to use multiple chains...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version
Chinese version, very easy to use

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.