我正在研究一个类项目并尝试在我的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)'
});
答案 0 :(得分:1)
$("#earthID").css({'-moz-transform':'rotate('+earthRotate+'deg)',
'-webkit-transform':'rotate('+earthRotate+'deg)',
'-o-transform':'rotate('+earthRotate+'deg)',
'transform':'rotate('+earthRotate+'deg)'
});
答案 1 :(得分:0)
请尝试这个
<div id="abc"> abc </div>
<script>
jQuery(document).ready(function() {
jQuery("#abc").css({'color':'red','float':'right'});
});
</script>