当我尝试使用css()旋转箭头时遇到问题
$(function() {
$("#arrowAnim").css("transform:","rotate(300deg)");
});
这是小提琴 Python's re documentation
我不知道它有什么问题,已经寻找过类似的问题,但仍然无法解决我的问题。希望获得一些帮助,我想知道这是因为动画吗?
答案 0 :(得分:0)
使用css函数时,不需要使用:
选中https://www.w3schools.com/jquery/jquery_css.asp
只需退出css语句中的冒号即可,我将正常工作:
$(function() {
$("#arrowAnim").css("transform","rotate(300deg)");
});