jquery slide and timing
hey there, i have a div that expands when the pag开发者_运维知识库e is loaded, now i need it to collapse after 30 seconds, does anybody have an idea about how to do it in query?
$(function(){
$("#banner").slideDown();
});
$(function(){
$("#banner").slideDown(function() {
setTimeout(function() {
$("#banner").slideUp();
}, 30000);
});
});
To do this you'll need to use setTimeout
$(function(){
//something
setTimeout("slidedown()",30000);
}
function slidedown(){
$("#banner").slideDown()
}
精彩评论