While I have a good understanding of CSS, Javascript is still new territory for me. I could use some guidance on the following task.
My goal is to display a fixed div at the bottom of the screen, but I only want it to appear after a specific delay, say 10 seconds. How can I achieve this using the code below?
CSS
.bottomdiv
{
position: absolute;
left: 0;
right: 0;
z-index : 100;
filter : alpha(opacity=100);
POSITION: fixed;
bottom: 0;
}
HTML
<div class="bottomdiv">
<iframe src="http://example.com" width="990" height="110" scrolling="no"></iframe>
</div>
Your assistance would be greatly appreciated. Thank you.