所以我想知道你所有的想法使用jQuery的css或動畫屬性動畫對象的效率。例如..jQuery的CSS和動畫功能效率
$('button').click(function(){
$('obj to change').css('pos', x);
});
這部作品伴隨着CSS轉換屬性
CSS:
transition:all 0.7s ease-in-out;
VS
$('button').click(function(){
$('obj to change').animate({ pos , 'x' });
}, 2000, function() {
// Animation complete.
});
預先感謝其輸入爲輸入每個人,或者如果你有更好的建議。
CSS3並不是每個瀏覽器都支持的。 – melancia 2013-04-24 13:43:11
你的'animate'方法在語法上是容易出錯的。 – undefined 2013-04-24 13:43:41
http://stackoverflow.com/questions/7866423/css3-animations-and-performance-are-there-any-benchmarks和http://stackoverflow.com/questions/2999749/performance-of-css-transitions-vs -js-animation-packages。並且預計在移動設備上會有更大的差異,正如已經在其中一個現有問題 – 2013-04-24 13:43:51