我想用jQuery動畫。我有這樣的代碼:jquery動畫不動畫
$(document).ready(function(){
$(".label").delay(2000).animate({backgroundPositionX:"0px",backgroundPositionY:"30px"},10000,linear);
$(".label").animate({backgroundPositionX: "-70px" ,backgroundPositionY:"30px"},10000,linear);
$(".label").animate({backgroundPositionX: "-140px" ,backgroundPositionY:"30px"},10000,linear);
但動畫不起作用。任何想法出了什麼問題?
我嘗試過所有瀏覽器都沒有結果。我將嘗試僅傳遞一個參數以用於背景位置。謝謝:) – Cheryl