我對CSS有很多知識,但是我在Javascript中完全是新手,所以我不知道如何完成以下任務,需要您的幫助。如何在特定頁面加載時間後顯示Div?
我想在屏幕的底部顯示一個固定的div,但它應該只出現在特定的時間段後,假設10秒,如何用下面的代碼來做到這一點。
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>
感謝。
[呼叫與setInterval函數的可能的複製在jQuery?](http://stackoverflow.com/questions/5484205/call-function-with-setinterval-in-jquery) – Bharat