jQuery:slideUp()延迟()然后slideDown;不工作
我正在尝试实现一个非常简单的页脚通知元素,向上滑动一会儿,然后向下滑动。我正在使用:
$('button').click( function () {
$('#message-box').slideUp('slow').delay(1500).slideDown('slow');
});
但是,当您单击按钮时,它会延迟 1500 毫秒,然后向上滑动,并且永远不会向下滑动。
I'm trying to implement a very simple footer notification element to slide up for a moment, then slide back down. I'm using:
$('button').click( function () {
$('#message-box').slideUp('slow').delay(1500).slideDown('slow');
});
However, when you click the button, it delays for the 1500 ms then slides up and never slides down.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您真正想要的是:
您可以在此处测试。虽然考虑到您的布局,它看起来有点倒退,但
.slideDown()
用于显示 一个元素,.slideUp()
用于隐藏 一个元素...即使给定你的 CSS,它在显示时实际上会上升。另外,编辑小提琴时不需要
和
标签,这些标签已经包含在... html 框架将进入
内部。
What you actually want is this:
You can test it here. Though it seems a bit backwards given your layout,
.slideDown()
is for showing an element, and.slideUp()
is for hiding an element...even though given your CSS it's actually going up when shown.Also as an aside, you don't need
<html>
and<body>
tags when editing the fiddle, these are already included...any content in the html frame will go inside the<body>
.