>  기사  >  웹 프론트엔드  >  jQuery는 수직 반투명 아코디언 특수 효과 코드를 구현합니다.

jQuery는 수직 반투명 아코디언 특수 효과 코드를 구현합니다.

WBOY
WBOY원래의
2016-05-16 15:43:391438검색

오늘은 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>

<div class="pic">
 <ul>
 <li class="l1">
  <a href="http://www.jb51.net" target="_blank">
  <div class="txt">
   <p class="p1">作者 : 走天涯</p>
   <p class="p2">我的个人拉萨之旅||故事之城</p>
  </div>
  </a>
 </li>
 <li class="l2">
  <a href="http://www.jb51.net" target="_blank">
  <div class="txt">
   <p class="p1">作者 : 走天涯</p>
   <p class="p2">我的个人拉萨之旅||故事之城</p>
  </div>
  </a>
 </li>
 <li class="l3"> 
  <a href="http://www.jb51.net" target="_blank">
  <div class="txt">
   <p class="p1">作者 : 走天涯</p>
   <p class="p2">我的个人拉萨之旅||故事之城</p>
  </div>
  </a>
 </li>
 <li class="l4">     
  <a href="http://www.jb51.net" target="_blank">
  <div class="txt">
   <p class="p1">作者 : 走天涯</p>
   <p class="p2">我的个人拉萨之旅||故事之城</p>
  </div>
  </a>
 </li>
 </ul>
</div>

<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>

위는 여러분과 공유한 jQuery 반투명 서랍 아코디언 코드입니다. 마음에 드셨으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.