2012-01-11 15 views
0

それはhttp://jsfiddle.net/gPfBC/私のアニメーション進行状況バーが機能していませんか?

を働いている私は、HTML文書内の私のコードを実行しようとすると、HTMLに、いくつかreasongのための私のコードをしようとし、これが機能していませんでしたが、私は http://jsfiddle.net と私のコードで同じコードをしようとしていました

誰かがこのコードを試して、完全なhtmlコードを私に渡すことができますか?

<head> 
    <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> 
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> 
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> 

    <script> 
    $(document).ready(function(){ 
    var p=0; 

    $("#myProgressBar").progressbar({value:0}); 
     var timer = setInterval(function(){ 
      //This animates the bar 
      $("#myProgressBar .ui-progressbar-value").animate({width: p+"%"}, 500); 
      //This does static sets of the value 
      //$("#myProgressBar").progressbar("option","value",p); 
      p = p +3; 
      if(p>33.33){ 
       $("#myProgressBar .ui-progressbar-value").animate({width: "33.33%"}, 500); 
       //$("#myProgressBar").progressbar("option","value",100); 
       clearInterval(timer); 
      } 
    },500); 
}); 
    </script> 
    <style type="text/css"> 
    </style> 
</head> 
<body style=" background:url(ebay-bar/images/1.jpg) top left no-repeat; width:1099px; height:1050px;"> 
<a href="2.html" style="width:185px; height:31px;position:absolute; left: 198px; top: 516px;"></a> 
<div style="width:954px; position:absolute; top:606px; left: 67px; height: 45px;"> 
<div id="myProgressBar" style="height:43px;"></div> 
</div> 
</body> 
</html> 

答えて

1

あなたはjQueryの1.3.2とjsFiddleとjQuery UI 1.7.2上でスクリプトを実行しているが、あなたのhtmlページは、jQueryの1.5を含んでいました。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> 

あなたのスクリプトは、おそらくjQueryの1.5で廃止された機能を使用しているか、jQueryの1.5とjQuery UI 1.8の間にいくつかの問題があると

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> 

を交換してください。 jQueryとjQuery UIの両方の最新バージョンを使用してみてください。

+0

本当にありがとう、あなたは完全に正しいです!私はあなたを連れて行く言葉がない!私はここで狂っていた:P – karlelizabeth

関連する問題