我試圖弄清楚如何讓4張圖片在頁面加載時依次淡入。試圖隨着時間的推移逐漸淡入div,使用jQuery
以下是我的(業餘)代碼:
下面是HTML:
<div id="outercorners">
<img id="corner1" src="images/corner1.gif" width="6" height="6" alt=""/>
<img id="corner2" src="images/corner2.gif" width="6" height="6" alt=""/>
<img id="corner3" src="images/corner3.gif" width="6" height="6" alt=""/>
<img id="corner4" src="images/corner4.gif" width="6" height="6" alt=""/>
</div><!-- end #outercorners-->
這裏是JQuery的:
$(document).ready(function() {
$("#corner1").fadeIn("2000", function(){
$("#corner3").fadeIn("4000", function(){
$("#corner2").fadeIn("6000", function(){
$("#corner4").fadeIn("8000", function(){
});
});
});
});
這裏是CSS:
#outercorners {
position: fixed;
top:186px;
left:186px;
width:558px;
height:372px;
}
#corner1 {
position: fixed;
top:186px;
left:186px;
display: none;
}
#corner2 {
position: fixed;
top:186px;
left:744px;
display: none;
}
#corner3 {
position: fixed;
top:558px;
left:744px;
display: none;
}
#corner4 {
position: fixed;
top:558px;
left:186px;
display: none;
}
他們似乎只是眨眼間我,而不是按照我賦予他們的順序淡入。我應該使用queue()函數嗎?而且,如果是這樣,我將如何在這種情況下執行它?
感謝您的協助。
太謝謝你了!它像一個魅力。太簡單了! – heathwaller 2010-06-15 21:07:45
沒問題..... – calumbrodie 2010-06-15 21:12:14
字符串等於1而不是值,慢= 600和快= 200和默認= 400 – 2010-06-15 22:08:04