我試圖讓我的主要標誌圖像淡入(使用jquery)後一定的延遲。當你第一次加載頁面時,整個頁面落在下style="display:none"
JQuery淡入延遲
我只希望徽標display:none
不是整個頁面
的腳本實際上EXCEPT工作正常。有什麼我失蹤?一些標籤我沒有關閉?這裏是鏈接:My Website 這裏是代碼[Java腳本]:
`<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#logo').delay(1500).fadeIn(1500);
});
</script>
這裏是HTML:
<img src="img/made_clothes2.png" class="clothingLogo" id="logo" style="display:none;" />
<center><ul class="social">
<li><a href="http://www.facebook.com/madeclothiers"><img src="img/facebook.png" class="social"></a></li>
<li><a href="http://www.twitter.com/madeclothiers"><img src="img/twitter.png" class="social"></a></li>
<li><a href="http://www.madeclothiers.tumblr.com/"><img src="img/tumblr.png" class="social"></a></li>
<li><a href="http://web.stagram.com/n/madeclothiers"><img src="img/instagram.png" class="social"></a></li>
</ul></center>
目前的情況是,當頁面加載沒有任何顯示,直到延遲.fadeIn()被執行...我想要加載其他「社交」圖像和#logo以獨立加載[使用delay.fadeIn()]。
感謝, [編輯:我固定img標籤和UL標籤,但仍對圖像的「社會」的圖像加載不走]
'img'是一個空標籤,不應該有結束標籤。也'center'是非常,非常過時 –
這樣 – geekman
– geekman