取得CSS Rotation 百分比 透過Jquery 取得物件當時的Rotation 目前呈現都是matrix()的素質,我只想記錄為百分比時, 可以透過以下外掛來進行轉換 程式如下 // // 取得旋轉角度 (function($){ $.fn.rotationDegrees = function () { var matrix = this.css('-webkit-transform') || this.css('-moz-transform') || this.css('-ms-transform') || this.css('-o-transform') || this.css('transform'); if(typeof matrix === 'string' && matrix !== 'none') { var values = matrix.split('(')[1].split(')')[0].split(','); var a = values[0]; var b = values[1]; var angle = Math.round(Math.atan2(b, a) * (180/Math.PI)); } else { var angle = 0; } return angle; }; }(jQuery));