admin管理员组文章数量:1352147
I'm looking for code that makes a div appear after a certain amount of time on a site. Here's the sort of thing I'm talking about:
<div class="container">
<div class="secretpopout">
This is the div I want to pop out after a couple of minutes.
</div>
</div>
I'm relatively new to javascript and jQuery, but I'm assuming I will need to use the setTimeout or something similar. I've tried finding the answer online, but if someone could explain it in a way a designer (as opposed to a programmer) would get it, that would be great - ANY LIGHT shed on this would be greatly appreciated.
Thank you.
I'm looking for code that makes a div appear after a certain amount of time on a site. Here's the sort of thing I'm talking about:
<div class="container">
<div class="secretpopout">
This is the div I want to pop out after a couple of minutes.
</div>
</div>
I'm relatively new to javascript and jQuery, but I'm assuming I will need to use the setTimeout or something similar. I've tried finding the answer online, but if someone could explain it in a way a designer (as opposed to a programmer) would get it, that would be great - ANY LIGHT shed on this would be greatly appreciated.
Thank you.
Share Improve this question asked Apr 2, 2010 at 16:35 user307783user307783 511 gold badge1 silver badge2 bronze badges1 Answer
Reset to default 7You can do this with very little code in jQuery 1.4+ using .delay()
, like this:
$(function() {
$(".secretpopout").delay(120000).fadeIn();
});
This would show it after 2 minutes, just give it some CSS so it's hidden initially:
.secretpopout { display: none; }
本文标签: javascriptCode to make div appear after a certain amount of timeStack Overflow
版权声明:本文标题:javascript - Code to make div appear after a certain amount of time - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743911152a2560424.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论