admin管理员组文章数量:1323029
I'm trying to make an hidden div slide down on the click of a button and also wait for about five seconds before sliding back up. I've tried the delay() but i don't know if i'm not implementing it right. Also and when the div isn't hidden it just displays the image.
I have this so far /
Anyone knows what i'm doing wrong?
Thanks in advance..
I'm trying to make an hidden div slide down on the click of a button and also wait for about five seconds before sliding back up. I've tried the delay() but i don't know if i'm not implementing it right. Also and when the div isn't hidden it just displays the image.
I have this so far http://jsfiddle/2sMFn/3/
Anyone knows what i'm doing wrong?
Thanks in advance..
- 1 It should be slideUp not SlideUp... – Jerryf Commented Aug 24, 2012 at 15:10
3 Answers
Reset to default 5You're on the right track, but you have to change this:
$this.delay(5000).SlideUp(6000);
to this
$this.delay(5000).slideUp(6000);
as it's slideUp whithout the capitol "S" ?
FIDDLE
Try this:
$this.delay(5000).slideUp(6000);
following is the DEMO: http://jsfiddle/2sMFn/19/
function name is 'slideUp()' instead of 'SlideUp'. So use this :
$this.delay(5000).slideUp(6000);
本文标签: javascriptslide down and delay in jqueryStack Overflow
版权声明:本文标题:javascript - slide down and delay in jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742110843a2421248.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论