可能重複:
Animate element transform rotate如何在「animate」方法中爲「-webkit-transform」設置css值?
當我嘗試動畫使用jQuery在我的頁面圖像的旋轉,這是無法理解的CSS屬性「-webkit-改造」的元素,怎麼了?
javascript代碼:
$("body").toggle(
function(){
$("img").animate(
{
opacity:0.5,
"-webkit-transform":"rotate(180deg)"
},1000,function(){
//some function
}
);
},
function(){
$("img").animate(
{
opacity:1,
webkitTransform:"rotate(-180deg)"
},1000,function(){
//some function
}
);
});
});
爲什麼使用jQuery進行動畫?改用CSS3:'-webkit-transition:-webkit-transform;' – 2012-07-15 21:20:43
谷歌搜索「動畫變換jquery」調出 [這個其他問題](http://stackoverflow.com/questions/5462275/animate-element-transform-旋轉)總之,簡單的動畫不能做到這一點,但有另一種方法。 – xixixao 2012-07-15 21:26:47