gpt4 book ai didi

animation - 动画结束前执行的 Tweenmax 回调

转载 作者:行者123 更新时间:2023-12-01 00:43:33 32 4
gpt4 key购买 nike

我在我的网站上使用 greensock gsap 制作动画。问题是在动画结束之前执行的回调。在下面的示例中,元素在动画一半的某处被删除。

TweenLite.to($(".flipper"), 2, {rotationY:180,onComplete:function(){
$(this).remove()
}});

有没有人遇到同样的问题?

最佳答案

不,对我来说效果很好(见下面的 jsfiddle)。但是,回调函数中的 this 不是动画对象,而是补间。所以如果你想在动画之后删除它,你必须使用 this.target,像这样:

TweenLite.to($(".flipper"), 1, {rotationY:180,onComplete:function(){
(this.target).remove()
}});

http://jsfiddle.net/brian_griffin/5Ltfg/

关于animation - 动画结束前执行的 Tweenmax 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15815648/

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