gpt4 book ai didi

javascript - 使 fadetoggle 淡入

转载 作者:太空宇宙 更新时间:2023-11-04 04:28:54 25 4
gpt4 key购买 nike

我怎样才能让 jQuery 在元素可见时淡入?

这是我的代码示例: http://jsfiddle.net/IntelandBacon/nWscz/

$('.expand').click(function () {
$(this).next().css("visibility", "visible");
$(this).next().fadeToggle("slow");
});

谢谢。

最佳答案

http://jsfiddle.net/nyWzK/

将你的 JS 改成这样

$('.expand').click(function () {
$(this).next().fadeToggle("slow");
});

然后更改 <tr style="visibility: hidden;">在你的 css 中为 <tr style="display:none;">

如果您想坚持整个可见性,那么您将不得不探索 jquery 的 animate函数结合css opacity - 但是,我建议不要这样做,因为您并不真正需要额外的努力。

关于javascript - 使 fadetoggle 淡入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17701051/

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