gpt4 book ai didi

jquery - 如何在动画完成后删除元素?

转载 作者:行者123 更新时间:2023-12-03 22:47:55 25 4
gpt4 key购买 nike

我正在使用以下代码来为 div 制作动画。

<script>
$(function() {
$("a.shift").click(function() {
$("#introOverlay").animate({
height: 0,
}, 2000)
});
});
</script>

动画结束后,我想将其删除。我怎样才能做到这一点?

最佳答案

animate需要另外 2 个参数,所以你可以这样做:

$("a.shift")
.click(function()
{
$("#introOverlay")
.animate({height: 0}, 2000,"linear",function()
{
$(this).remove();
}
)
}
);

未经测试。

编辑:经过测试:这是我使用的完整页面,它扩展到 300 像素,使删除更加明显:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function()
{
$(".shift").click(function()
{
$("#introOverlay")
.animate({height: 300}, 2000,"linear",function()
{
$(this).remove();
})
});
});
//]]>
</script>
</head>
<body>
<a class="shift" href="javascript:void(0)">clickme</a>
<div id="introOverlay" style="background-color:red;height:200px;">overlay</div>
</body>
</html>

关于jquery - 如何在动画完成后删除元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1432548/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com