이 글의 예시에서는 왼쪽 웹페이지에 탭 슬라이딩 도어 효과를 구현하는 js 코드를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
왼쪽 여닫이 방식의 웹 슬라이딩 도어, 웹 슬라이딩 도어, TAB 슬라이딩 도어, 수직 슬라이딩 도어 메뉴, 수직 TAB 탭, IE6/IE7/FF/오페라 브라우저와 호환되는 제품입니다. 실제로 수직 및 수평 레이아웃의 코드는 약간의 수정만 제외하면 기본적으로 동일합니다. 일종의 미닫이문만 배우면 같은 문제를 반복할 수 있습니다.
런닝 효과 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/js-left-tab-cha-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> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>竖排的选项卡</title> <meta name="keywords" content="" /> <style type="text/css"> body{font-size:12px;font-family:"Lucida Grande",Verdana,Lucida,Arial,Helvetica,宋体,sans-serif;} a:link,a:visited,a:hover,a:active{text-decoration:none;color:#256bae;} .warp{width:586px; height:269px !important; height:271px;border:1px solid #dbdcd7;} .main{width:562px; height:269px !important;height:271px;padding:5px; margin-left:15px;overflow:hidden;float:left;} .news{position:absolute;z-index:4;width:24px;} .news ul{list-style:none;padding:0;margin:0;} .news ul li{ height:84px !important;height:88px;width:20px;margin-bottom:0px;padding-top:5px;text-align:center;cursor:pointer;;vertical-align:middle; background-color:#e5e5e5; border-right:#dbdcd7 solid 1px;border-bottom:#dbdcd7 solid 1px;} .news ul li.on{background-color:#ffffff; border:#FFFFFF 0px} .news span{display:block; margin-top:9px !important; margin-top:20px;} .dis{display:block;} .undis{display:none;} </style> <script type="text/javascript"> function g(o){return document.getElementById(o);} function HoverLi(m,n,counter){for(var i=1;i<=counter;i++){g('tb_'+m+i).className='';g('tbc_'+m+i).className='undis';}g('tbc_'+m+n).className='dis';g('tb_'+m+n).className='on';} </script> </head> <body> <strong>兼容IE6/IE7/FF/opera</strong><br><br> <div class="warp"> <div class="news"> <ul> <li class="on" id="tb_11" onmouseover="HoverLi(1,1,3);"><span>企业新闻</span></li> <li class="" id="tb_12" onmouseover="HoverLi(1,2,3);"><span>业内咨讯</span></li> <li class="" id="tb_13" onmouseover="HoverLi(1,3,3);"><span>业内咨讯</span></li> </ul> </div> <div class="dis" id="tbc_11"> <div class="main"> 1<br>企业新闻的内容1<br>企业新闻的内容1<br>企业新闻的内容1 </div> </div> <div class="undis" id="tbc_12"> <div class="main"> 2<br>业内咨讯的内容2<br>业内咨讯的内容2<br>业内咨讯的内容2<br> </div> </div> <div class="undis" id="tbc_13"> <div class="main"> 3<br>业内咨讯的内容3<br>业内咨讯的内容3<br>业内咨讯的内容3<br> </div> </div> </div> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍에 도움이 되기를 바랍니다.