jQuery fadeOut 可以工作,但不能 fadeIn
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上
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 asdisplay:none
then useslideDown()
, it'll work.