jquery 怎么知道 go 是什么?
$('#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') }
});