이 기사에서는 주로 마우스 오버 배경 반전을 구현하는 jQuery용 검정색 탐색 메뉴 코드를 소개합니다. 여기에는 애니메이션 애니메이션과 결합된 jQuery 마우스 이벤트 기술이 포함되어 있어 배경 반전 효과를 얻을 수 있습니다. 참고하세요
본 글의 예시에서는 마우스 오버 배경 뒤집기를 구현한 jQuery 블랙 네비게이션 메뉴 코드를 설명하고 있습니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
jQuery로 구현한 마우스 오버 배경 반전 기능이 있는 검정색 탐색 메뉴 메뉴입니다. 효과 미리보기 시 왼쪽 하단에 오류가 표시되며 효과를 사용할 수 없습니다. 물론, 실제 사용에서는 이런 문제가 발생하지 않습니다.
실행 중인 효과의 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo .jb51.net/js/2015 /jquery-mouse-over-bg-cha-black-nav-menu/
구체 코드는 다음과 같습니다.
<!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>导航菜单-鼠标悬停背景翻转的黑色jQuery菜单</title> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <style type="text/css"> .menu{height:41px;display:block;width:662px;} .menu ul{list-style:none;padding:0;margin:0;} .menu ul li{float:left;overflow:hidden;position:relative;text-align:center;height:38px;line-height:31px;*line-height:33px;background:url("images/tmenubg.png") repeat-x;} .menu ul li a{position:relative;display:block;width:81px;height:31px;font-family:"Microsoft Yahei";font-size:12px;letter-spacing:1px;text-transform:uppercase;text-decoration:none;cursor:pointer;} .menu ul li a span{position:absolute;left:0;width:81px;} .menu ul li a span.out{top:0px;} .menu ul li a span.over,.menu ul li a span.bg{top:-45px;} #menu{position:absolute;margin:4px 0px 0px 295px;*margin:4px 0px 0px -185px;} #menu ul li a{color:#fff;text-decoration:none;} #menu ul li a span.over{color:#000;text-decoration:none;} #menu ul li span.bg{height:32px;background:url("images/overbg.png") center center no-repeat;} #menu .fl{background:url("images/lrbg.png") no-repeat;width:7px;height:38px;float:left;} #menu .fr{background:url("images/lrbg.png") no-repeat -8px 0px;width:7px;height:38px;float:right;} </style> <script src="jquery1.3.2.js" type="text/javascript"></script> <script language="javascript"> $(document).ready(function() { $("#menu li a").wrapInner( '<span class="out"></span>' ).append( '<span class="bg"></span>' ); $("#menu li a").each(function() { $( '<span class="over">' + $(this).text() + '</span>' ).appendTo( this ); }); $("#menu li a").hover(function() { $(".out", this).stop().animate({'top': '45px'}, 250); // move down - hide $(".over", this).stop().animate({'top': '0px'}, 250); // move down - show $(".bg", this).stop().animate({'top': '0px'}, 120); // move down - show }, function() { $(".out", this).stop().animate({'top': '0px'}, 250); // move up - show $(".over", this).stop().animate({'top': '-45px'}, 250); // move up - hide $(".bg", this).stop().animate({'top': '-45px'}, 120); // move up - hide }); $("#menu2 li a").wrapInner( '<span class="out"></span>' ); $("#menu2 li a").each(function() { $( '<span class="over">' + $(this).text() + '</span>' ).appendTo( this ); }); $("#menu2 li a").hover(function() { $(".out", this).stop().animate({'top': '45px'}, 200); // move down - hide $(".over", this).stop().animate({'top': '0px'}, 200); // move down - show }, function() { $(".out", this).stop().animate({'top': '0px'}, 200); // move up - show $(".over", this).stop().animate({'top': '-45px'}, 200); // move up - hide }); }); </script> </head> <body> <p class="clear"></p> <p id="content"> <p id="top"> <p id="menu" class="menu"> <p class="fl"></p> <p class="fr"></p> <ul> <li><a href="#">脚本之家</a></li> <li><a href="#">产品介绍</a></li> <li><a href="#">软件下载</a></li> <li><a href="#">商业授权</a></li> <li><a href="#">模板市场</a></li> <li><a href="#">脚本下载</a></li> <li><a href="#">交流论坛</a></li> <li><a href="#">脚本交流</a></li> </ul> </p> </p> </p> </body> </html>
위는 이 장의 전체 내용을 보려면 jQuery 비디오 튜토리얼을 방문하세요.