2013-01-07 76 views
2

我有淡入淡出效果結構。隨着以下內容:在圖像上從左到右淡入淡出效果

<img src='firstStar.jpg' alt='star image' id='firstStar' /> 

    var loopImages = function(){ 

     $('#firstStar').fadeIn(1500, function(){ 

        $('#firstStar').fadeOut(1500, loopImages);   
     }); 
    } 
    loopImages(); 

它的工作。但是我想,這個效果從左到右。可能嗎?

+0

你的意思是它應該在左側逐漸變快? – JJJ

+0

是不是像http://stackoverflow.com/questions/596608/slide-right-to-left – Max

回答

3

你可以嘗試這樣的事情與animate

$(document).ready(function(){ 
    $("#firstStar").animate({left:200, opacity:"show"}, 1500); 
}); 

確保DIV最初是隱藏的(風格= 「顯示:無;」)。

+0

我不明白...請在我的代碼示例? –