-1

我正在处理一个类项目并尝试在我的 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)'
});
4

2 回答 2

1
$("#earthID").css({'-moz-transform':'rotate('+earthRotate+'deg)',
  '-webkit-transform':'rotate('+earthRotate+'deg)',
  '-o-transform':'rotate('+earthRotate+'deg)',
  'transform':'rotate('+earthRotate+'deg)'
});
于 2014-01-10T01:54:49.583 回答
0

请试试这个

<div id="abc"> abc </div>
   <script>
     jQuery(document).ready(function() {
        jQuery("#abc").css({'color':'red','float':'right'});
     });
   </script>
于 2014-01-10T01:16:11.903 回答