이번에는 jQuery로 세로 반투명 아코디언 효과를 만드는 방법을 보여드리겠습니다. jQuery에서 세로 반투명 아코디언 효과를 만들기 위한 주의 사항은 무엇인가요?
작업 렌더링:
공유한 jQuery 반투명 서랍 아코디언 코드는 다음과 같습니다.
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery半透明抽屉式手风琴代码</title> <style type="text/css"> *{margin:0;padding:0;list-style-type:none;} a,img{border:0;text-decoration:none;} body{font:12px/180% Arial, Helvetica, sans-serif, "新宋体";} .pic{width:1100px;height:430px;margin:70px auto 0;} .pic ul li{list-style:none;width:100px;height:429px;float:left;} .pic .l1{background-image:url(img/1.jpg);} .pic .l2{background-image:url(img/2.jpg);} .pic .l3{background-image:url(img/3.jpg);} .pic .l4{background-image:url(img/4.jpg);width:789px;} .txt{width:100px; height:429px;background:#000;filter:alpha(opacity=50);background:rgba(0,0,0,.5);} .txt p{color:#fff;font-family:"微软雅黑";float:left;position:relative;} .txt .p1{font-size:12px;width:12px;margin:25px 25px 0 20px;} .txt .p2{font-size:14px;width:14px;margin-top:25px;} </style> </head> <body> <p class="pic"> <ul> <li class="l1"> <a href="http://www.php.cn" target="_blank"> <p class="txt"> <p class="p1">作者 : 走天涯</p> <p class="p2">我的个人拉萨之旅||故事之城</p> </p> </a> </li> <li class="l2"> <a href="http://www.php.cn" target="_blank"> <p class="txt"> <p class="p1">作者 : 走天涯</p> <p class="p2">我的个人拉萨之旅||故事之城</p> </p> </a> </li> <li class="l3"> <a href="http://www.php.cn" target="_blank"> <p class="txt"> <p class="p1">作者 : 走天涯</p> <p class="p2">我的个人拉萨之旅||故事之城</p> </p> </a> </li> <li class="l4"> <a href="http://www.php.cn" target="_blank"> <p class="txt"> <p class="p1">作者 : 走天涯</p> <p class="p2">我的个人拉萨之旅||故事之城</p> </p> </a> </li> </ul> </p> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $(".pic ul li").hover(function(){ $(this).stop(true).animate({width:"789px"},500).siblings().stop(true).animate({width:"100px"},500); }); </script> </body> </html>
이 기사의 사례를 읽은 후 방법을 마스터했다고 생각합니다. 더 흥미로운 정보를 보려면 다른 항목에 주의하세요. PHP 중국어 웹사이트에 관련 기사가 있습니다!
추천 자료:
Jquery는 페이지를 열 때 무작위 선택 전환을 구현합니다.
위 내용은 jQuery는 수직 반투명 아코디언 효과를 만듭니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!