gpt4 book ai didi

javascript - 组合方法来隐藏或显示内容

转载 作者:行者123 更新时间:2023-12-02 19:27:48 25 4
gpt4 key购买 nike

我想知道如何将隐藏函数和显示函数组合成1个切换函数,该函数要么淡入内容,要么淡出内容,我猜这个参数会更新淡入淡出方法:

这是我目前在对象中使用 jQuery 进行 JS 的努力,但完全错误:

toggleAlertOverlay: function (state) {
var instance = this;
if (state === hide) {
instance.selector.fadeOut();
}
elseif(state === show) {
instance.selector.fadeIn();
}
},
toggleAlertOverlay(hide);

最佳答案

尝试使用 .fadeToggle()

The .fadeToggle() method animates the opacity of the matched elements. When called on a visible element, the element's display style property is set to none once the opacity reaches 0, so the element no longer affects the layout of the page.

$(<element>).fadeToggle();

哪里<element>是一个有效的选择器....

关于javascript - 组合方法来隐藏或显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11850044/

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