我有img,我需要將它旋轉90度,當我點擊它時。在jQuery中的Css轉換
<img src="img/right-arrow.png" alt="" class="show">
當我在CSS中使用
.show {
transform: rotate(90deg);
}
文件,它的工作原理。 但是當我在jQuery中做它不起作用。 這裏是我的jQuery
$('.show').click(function(){
$(this).css("-webkit-transform" : "rotate(90deg)");
}
);