Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么会这样: $("#bottom").css({"transform":"rotateX ("+rotation[0][0] + "deg)"});不工作?
$("#bottom").css({"transform":"rotateX ("+rotation[0][0] + "deg)"});
rotation[0][0] 已定义,我可以更改任何其他属性(例如背景颜色),那么如何使用 Jquery 沿 X 轴旋转元素?我正在使用 chrome,但我也尝试过使用 -webkit-transform。
这是因为你在rotateX和第一个左括号之间有一个空格。
rotateX
改变"rotateX (":
"rotateX ("
至"rotateX(":
"rotateX("
$("#bottom").css({"transform":"rotateX("+rotation[0][0] + "deg)"});
JSFiddle 演示。