尝试这个:
var rotation = 0;jQuery.fn.rotate = function(degrees) { $(this).css({'-webkit-transform' : 'rotate('+ degrees +'deg)', '-moz-transform' : 'rotate('+ degrees +'deg)', '-ms-transform' : 'rotate('+ degrees +'deg)', 'transform' : 'rotate('+ degrees +'deg)'});};$('#btnRotateRight').click(function() { rotation += 5; $('.rotate').rotate(rotation);});$('#btnRotateLeft').click(function() { rotation -= 5; $('.rotate').rotate(rotation);});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)