0
我在jQuery的中號初學者,我必須解決背景問題中,圖像出現在顯示在1秒背景圖像中移動的jQuery
<body id="content" style="display: none;background-image:url('images/wood.jpg'); ">
我在jQuery的中號初學者,我必須解決背景問題中,圖像出現在顯示在1秒背景圖像中移動的jQuery
<body id="content" style="display: none;background-image:url('images/wood.jpg'); ">
你因此在1秒後設定顯示爲無你需要刪除這個。
您應該使用window.setTimeout函數。 1000毫秒= 1秒。
您可以設置使用jQuery像這樣的可視性:
$("#content").show();
因此,一個完整的代碼示例:
setTimeout(function(){
$("#content").show();
},1000)
1seconde是加載頁面的時候,它出現當一個頁面加載它diplay – 2013-04-08 16:02:58
我努力理解你的問題。你是說圖像需要1秒加載? – DaveHogan 2013-04-08 16:07:54
不,它顯示一秒(在加載頁面之前) – 2013-04-08 16:13:14