gpt4 book ai didi

javascript - 如何使用 JavaScript 获取以度为单位的 CSS 变换旋转值

转载 作者:数据小太阳 更新时间:2023-10-29 04:38:48 26 4
gpt4 key购买 nike

我正在使用代码 found at CSS-Tricks使用 JavaScript 获取当前旋转变换(在 CSS 中)。

JavaScript 函数:

function getCurrentRotation( elid ) {
var el = document.getElementById(elid);
var st = window.getComputedStyle(el, null);
var tr = st.getPropertyValue("-webkit-transform") ||
st.getPropertyValue("-moz-transform") ||
st.getPropertyValue("-ms-transform") ||
st.getPropertyValue("-o-transform") ||
st.getPropertyValue("transform") ||
"fail...";

if( tr !== "none") {
console.log('Matrix: ' + tr);

var values = tr.split('(')[1];
values = values.split(')')[0];
values = values.split(',');
var a = values[0];
var b = values[1];
var c = values[2];
var d = values[3];

var scale = Math.sqrt(a*a + b*b);

// arc sin, convert from radians to degrees, round
/** /
var sin = b/scale;
var angle = Math.round(Math.asin(sin) * (180/Math.PI));
/*/
var angle = Math.round(Math.atan2(b, a) * (180/Math.PI));
/**/

} else {
var angle = 0;
}

// works!
console.log('Rotate: ' + angle + 'deg');
$('#results').append('<p>Rotate: ' + angle + 'deg</p>');
}

根据帖子,这有效,但是,对于超过 180 度的值,我得到负数,而 360 度返回零。我需要能够正确返回 180-360 度的度数。

这段代码有什么问题导致它无法返回正确的 180 度 Angular ?

如果您观看演示,它会更有意义:See the pen for a demo of this in action .

最佳答案

我也需要这样的东西,因此决定从初始代码开始,做一些清理和一些改进;然后我根据需要修改了OP,所以我现在想在这里分享:

function getCurrentRotation(el){
var st = window.getComputedStyle(el, null);
var tm = st.getPropertyValue("-webkit-transform") ||
st.getPropertyValue("-moz-transform") ||
st.getPropertyValue("-ms-transform") ||
st.getPropertyValue("-o-transform") ||
st.getPropertyValue("transform") ||
"none";
if (tm != "none") {
var values = tm.split('(')[1].split(')')[0].split(',');
/*
a = values[0];
b = values[1];
angle = Math.round(Math.atan2(b,a) * (180/Math.PI));
*/
//return Math.round(Math.atan2(values[1],values[0]) * (180/Math.PI)); //this would return negative values the OP doesn't wants so it got commented and the next lines of code added
var angle = Math.round(Math.atan2(values[1],values[0]) * (180/Math.PI));
return (angle < 0 ? angle + 360 : angle); //adding 360 degrees here when angle < 0 is equivalent to adding (2 * Math.PI) radians before
}
return 0;
}

像这样使用它:

getCurrentRotation(document.getElementById("el_id"));

关于javascript - 如何使用 JavaScript 获取以度为单位的 CSS 变换旋转值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19574171/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com