>  기사  >  웹 프론트엔드  >  순수 js+html 및 순수 css+html은 아코디언 효과_javascript 기술을 생성합니다.

순수 js+html 및 순수 css+html은 아코디언 효과_javascript 기술을 생성합니다.

WBOY
WBOY원래의
2016-05-16 15:06:351420검색

이 글에서는 참고로 순수 js+html로 아코디언을 만드는 것과 순수 css+html로 아코디언을 만드는 두 가지 효과를 공유합니다.

1. 순수 CSS+html 아코디언 효과

CSS로 작성된 이런 종류의 아코디언은 주로 CSS의 전환 속성에 적용됩니다.

코드는 다음과 같습니다.

<!DOCTYPE HTML>
<html>
<head>
<style>
body{background: url('bg.gif') repeat;}
ul,li,p{margin: 0px;padding: 0px;list-style: none;}
 #div{width: 1180px;height: 405px;border:5px solid #ccc;padding: 0px;margin: 0px auto;overflow: hidden;} 
 .list{width: 3200px;}
 .list li{float: left;width: 170px;height: 500px;;position: relative;
   -moz-transition:width 2s;
   transition: width 2s;
   -moz-transition: width 2s; /* Firefox 4 */
   -webkit-transition: width 2s; /* Safari 和 Chrome */
   -o-transition: width 2s; /* Opera */
 }
.list:hover li{width: 107px;}
.list li:hover{width: 538px;}
.list li p{width: 100%;height: 100%;opacity: 0.5;position: absolute;top: 0px;left: 0px;background: black; }
.list li:hover p{opacity:0}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript">
</script>
</head>
<body >
<div id="div">
   <ul class="list"> <!--如果设置父级与子级之间没有空隙的话,将margin和padding设为0即可-->
     <li><img src="image/1.jpg" style="width:538px;height:405px;"><p></p></li>
     <li><img src="image/2.jpg" style="width:538px;height:405px;"><p></p></li>
     <li><img src="image/3.jpg" style="width:538px;height:405px;"><p></p></li>
     <li><img src="image/4.jpg" style="width:538px;height:405px;"><p></p></li>
     <li><img src="image/5.jpg" style="width:538px;height:405px;"><p></p></li>
     <li><img src="image/6.jpg" style="width:538px;height:405px;"><p></p></li>
     <li><img src="image/7.jpg" style="width:538px;height:405px;"><p></p></li>
   </ul>
</div>
</body>
</html>

2. 순수 js+html로 아코디언 만들기

이 아코디언의 문제점은 각 리를 개별적으로 움직일 때는 문제가 없지만, 움직임이 매우 빠르면 가장 오른쪽 리에 틈이 생긴다는 것입니다. 나는 그것이 타이머 문제라고 생각한다. 즉, 각 리가 원래 위치로 돌아오기 전에 다음 리가 움직이기 시작한다. 그런데 내 타이머가 꺼져 있어요.

누구든지 나에게 메시지를 남겨서 변경 방법을 알아낼 수 있도록 도와주세요!

코드는 다음과 같습니다.

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>手风琴效果</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="perfectMove2.js"></script>
<script type="text/javascript">
window.onload=function()
{
  var oDiv=document.getElementById('show1');
  var iMinWidth=9999999;
  var aLi=oDiv.getElementsByTagName('li');
  var aSpan=oDiv.getElementsByTagName('span');
  var i=0;
  var bool=false;
  for(i=0;i<aLi.length;i++)
  {
    aSpan[i].index=i;
    aSpan[i].onmouseover=function ()
    {
       for(i=0;i<aLi.length;i++)
       {
         startMove(aLi[i],{width:this.offsetWidth});//调用运动函数
         bool=true;
       }
       if(bool)
       {
        startMove(aLi[this.index],{width:552});
       }
    }  
  }

};
</script>
</head>
<body>
<div id="show1">
  <ul>
    <li class="active">
      <span class="bg0">这是第一个</span>
      <img src="images/1.jpg" />
    </li>
    <li >
      <span class="bg1">这是第二个</span>
      <img src="images/2.jpg" />
    </li>
    <li >
      <span class="bg2">这是第三个</span>
      <img src="images/3.jpg" />
    </li>
    <li>
      <span class="bg3">这是第四个</span>
      <img src="images/4.jpg" />
    </li>
    <li>
      <span class="bg4">这是第五个</span>
      <img src="images/5.jpg" />
    </li>
    <li>
      <span class="bg5">这是第六个</span>
      <img src="images/6.jpg" />
    </li>
  </ul>
</div>
</body>
</html>

perfectMove2.js 코드는 다음과 같습니다.

function getStyle(obj,attr)//用此种方法获取样式中的属性
{
   if(obj.currentStyle)
   {
    return obj.currentStyle[attr];
   }
   else
   {
    return getComputedStyle(obj,false)[attr];
   }
}
function startMove(obj,json,fn)
{
    clearInterval(obj.timer);//清除定时器
    obj.timer=setInterval(function ()
    {
    var stop=true;
    for(var attr in json)
    {
           var iCur=0;
           if(attr=='opacity')
           {
             iCur=parseInt(parseFloat(getStyle(obj, attr))*100);//这里加parseInt是避免div的数值不稳定,在波动
           }
           else
          {
             iCur=parseInt(getStyle(obj, attr));
          }
           var iSpeed=(json[attr]-iCur)/8;
           iSpeed=iSpeed>0&#63;Math.ceil(iSpeed):Math.floor(iSpeed);
          if(iCur!=json[attr])
          {
              stop=false;
          }
          if(attr=='opacity')
             {
              obj.style.filter='alpha(opacity:'+(iCur+iSpeed)+')';
              obj.style.opacity=(iCur+iSpeed)/100;
            }
          else
            {
               obj.style[attr]=iCur+iSpeed+'px';
            }
         
    }
    if(stop)
    {
     clearInterval(obj.timer);
     if(fn){fn();}
    }
   }, 30)
    
}

이상 내용이 이 글의 전체 내용입니다. 자바스크립트 프로그래밍을 배우시는 모든 분들께 도움이 되었으면 좋겠습니다.

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