이 문서의 예에서는 상단을 오른쪽으로 축소하는 탐색 지역 코드의 jquery 구현을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
이것은 내비게이션과 유사한 메뉴이지만 더 확장성이 뛰어납니다. 메뉴로 사용할 수 있을 뿐만 아니라 내비게이션 블록 효과로도 사용할 수 있습니다. 이 효과는 다음을 기반으로 합니다. jQuery.플로팅 레이어의 왼쪽 끝에 있는 화살표를 마우스로 클릭하면 이 메뉴가 축소 및 확장됩니다.
런닝 효과 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/jquery-right-hidden-show-nav-style-codes/
구체적인 코드는 다음과 같습니다.
<!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>鼠标单击控制收缩和展开的窗口</title> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <style type="text/css"> *{margin:0;padding:0;} #box{position:absolute;right:0;top:0;overflow:hidden;} #arrow{color:#fff;background:#000;width:20px;height:90px;line-height:90px;font-size:12px;font-family:"宋体";text-align:center;font-weight:bold;float:left;} #col_box{width:400px;height:90px;background:#eee;float:left;} </style> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { var oMoveBox = $("#col_box"), oArr = $("#arrow"), maxL = 400; oArr.click(function(){ oMoveBox.animate({"width":"-="+maxL},600,function(){ maxL = -maxL; $("#arrow").html(maxL<0 ? "<" : ">"); }) }); }); </script> </head> <body> <div id="box"> <div id="arrow">></div> <div id="col_box">z<br>z<br>s<br>k<br>y</div> </div> </body> </html>
이 기사가 모든 사람의 jquery 프로그래밍 설계에 도움이 되기를 바랍니다.