1

我希望这是一个简单的问题,当我的新元素在点击时向下滑动时,我试图向下推我底行的 div

这是我的小提琴的链接

http://jsfiddle.net/abtPH/

这是我的jQuery

  $('li').on('click', function(e){
    $(this).find('.outer').slideToggle();
  });

这是我的html

 <ul style="list-style: none;">
  <li>
   <div style="width: 156px; height: 156px; border: solid #cfcfcf 1px; padding: 10px; text-align: center; color: #cfcfcf;"> 156px X 156px</div>

   <div class="outer">
     <div class="inner">
    </div>   
   </div>
  </li>
 </ul>  

关于如何做到这一点的任何想法?

4

1 回答 1

2

为 toggleClass 的持续时间添加了 jQuery UI。

http://jsfiddle.net/abtPH/3/

JS

$('li').on('click', function(e){
  $(this).find('.outer').slideToggle();
  $(this).toggleClass('active', 400);
});

CSS

.outer{position: absolute; width: 100%; background: black; top: auto; display: none; text-align: left;}
li.active {margin-bottom:100px;}
于 2013-08-14T17:34:37.740 回答