jQuery fadeOut 可以工作,但不能 fadeIn

发布于 2024-11-07 04:09:56 字数 297 浏览 1 评论 0原文

this 是我在 jsFiddle 上的代码,当我尝试这样做时

$('#featuredStores').fadeOut(1000)

,它有效,但是 .fadeIn() 不起作用,同样,当我使用 .slideUp() 时它起作用,但当我使用 .slideDown() 时不起作用,

这里有什么问题?

this is my code on jsFiddle, when I try doing

$('#featuredStores').fadeOut(1000)

it works, but .fadeIn() doesn't work, Similarly when I use .slideUp() it works, but doesn't work when I use .slideDown()

what's the issue here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白衬杉格子梦 2024-11-14 04:09:56

基本上 slideDown() 显示图像。考虑到渲染 DOM 时您的图像已经显示,因此没有什么可以向下滑动的。如果您将样式设置为 display:none 然后使用 slideDown(),它就会起作用。

Basically slideDown() shows the image. Considering your image is already shown when the DOM is rendered, there is nothing to slide down to. If you set the style as display:none then use slideDown(), it'll work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文