我正在处理一个类项目并尝试在我的 jQuery 中添加多个 css 前缀,但它不起作用。任何帮助将不胜感激。当我只保留 -moz-transform 时,它在 Firefox 中运行良好,但在任何其他浏览器中都没有,所以我试图添加所有前缀。如果有人有答案,请告诉我。
$(earthID).css({'-moz-transform':'rotate('+earthRotate+'deg)',
'-webkit-transform':'rotate('+earthRotate+'deg)',
'-o-transform':'rotate('+earthRotate+'deg)',
'transform':'rotate('+earthRotate+'deg)'
});