0
How to animate the transform:rotate(); by using jquery?
How to animate the CSS property transform:rotate(); by using jquery?
2 Respostas
0
$(document).ready(()=>{
$('.btn').mouseover(()=>{
$('.btn').animate({
transform:'rotate(240deg)'
},600)
})
})
0
it is not working. please give link of this code