jsfiddle example found on wwwjquery如何知道是什麼
jquery如何知道是什麼?
$('#myDiv').animate({ textIndent: 0 }, {
step: function(go) {
$(this).css('-moz-transform','rotateY('+go+'deg)');
$(this).css('-webkit-transform','rotateY('+go+'deg)');
$(this).css('-o-transform','rotateY('+go+'deg)');
$(this).css('transform','rotateY('+go+'deg)');
},
duration: 1000,
complete: function(){ alert('done') }
});
http://api.jquery.com/animate/ – j08691
了'step'回調的第一個參數是在每個步驟中的動畫屬性的數值。由於jQuery正在進行計算,因此jQuery在調用發送給「step」選項的回調函數時可以使用該值。 –
「go」標籤用於Go編程語言。 – peterSO