2012-02-09 63 views
-1

當我從本地光盤運行該代碼時,此代碼正在工作,但是當我從Dropbox運行此代碼時無法正常工作。任何解決方案jQuery animate在Internet上無法正常工作,但是在本地工作

$(document).ready(function(){ 
     wind1(); 
    }); 

    $(document).ready(function(){ 
     wind2(); 
    }); 

    $(document).ready(function(){ 
     wind3(); 
    }); 

    function wind1() { 
     $("#animatedClouds1").css({backgroundPosition: "0px 20px"}); 
     $("#animatedClouds1").animate({backgroundPosition: "1440px 20px"}, 80000, "linear", wind1); 
    } 

    function wind2() { 
     $("#animatedClouds2").css({backgroundPosition: "0px 200px"}); 
     $("#animatedClouds2").animate({backgroundPosition: "1440px 200px"}, 120000, "linear", wind2); 
    } 

    function wind3() { 
     $("#animatedClouds3").css({backgroundPosition: "0px 250px"}); 
     $("#animatedClouds3").animate({backgroundPosition: "1440px 250px"}, 160000, "linear", wind3); 
    } 

我在頁面上有一些遊戲在畫布上,這不停止加載。我可以使用不同的$(document).ready()嗎?

我對畫布沒有影響。

+0

你有沒有在服務器上的jQuery的參考...? – gdoron 2012-02-09 13:56:05

+0

像這樣: Modest 2012-02-09 13:58:45

+0

您必須爲src添加完整的http地址。 – Yorgo 2012-02-09 13:59:56

回答

0
$(function(){ 
    wind1(); 
}) 

jQuery.noConflict()(function(){ 
    wind1(); 
}); 
相關問題