我希望这是一个简单的问题我试图在我的新元素向下滑动时按下我的底行上的div
这是一个与我小提琴的链接
继承人我的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>
关于如何实现这一目标的任何想法?
答案 0 :(得分:2)
在toggleClass上添加了jQuery UI。
<强> 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;}