当我加入div
时,我希望对其他remove
的“向上移动”添加效果。这里的html:
<ul id="fds">
<li>
<h3>one</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
<li>
<h3>two</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
<li>
<h3>three</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
<li>
<h3>four</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
</ul>
在这里JavaScript:
$("#fds").delegate(".remove", 'click', function() {
var $li = $(this).closest("li");
$li.fadeOut(300, function() {
$li.remove();
})
})
Here用JS来测试这个。
将上边距设置为减去高度以提供更好的UX。
$("#fds").delegate(".remove", 'click', function() {
var $li = $(this).closest("li");
$li.css({opacity: 0}).animate({marginTop: -1 * $li.height()}, 400, function() {$li.remove();})
})
li
{
border: 1px solid red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul id="fds">
<li>
<h3>one</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
<li>
<h3>two</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
<li>
<h3>three</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
<li>
<h3>four</h3>
<p>Hello guys</p>
<p>
<button class="remove">x</button>
</p>
</li>
</ul>
通过这种方式,元素将在动画完成后实际隐藏。
$li.animate({
height: 0,
opacity: 0,
}, 'slow', function(){
$(this).hide();
});
我觉得像this这样的东西接近你想要的东西。
只需在fadeOut之前添加$li.animate({ height: 'toggle', opacity: 'toggle' }, 'slow');
。
这里你的JSfiddle更新了。 https://jsfiddle.net/L0prkrct/16/