gpt4 book ai didi

jquery - 向 jQuery 添加动画

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

我制作了一些自定义动画:

$(this).animate({opacity: '0'}, 200, function() {
$(this).animate({height: '0'}, 200, function() {
$(this).remove();
});
});

有没有办法将它添加到 jQuery 函数中,以便我可以像 fadeOut() 或 slipIn() 那样调用它?

最佳答案

你想要的都已完成jQuery plugins 。这个想法是将您的函数添加到 jQuery 的 prototype 中,其别名为 $.fn。你这样做:

$.fn.myFadeOut = function(){
return this.animate({opacity: '0'}, 200, function() {
$(this).animate({height: '0'}, 200, function() {
$(this).remove();
});
});
}

关于jquery - 向 jQuery 添加动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25380639/

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