Query Animate Rotate Using Step

$(‘.button’).click(function() {
$(‘.box’).animate(
{ deg: 180 },
{
duration: 1200,
step: function(now) {
$(this).css({ transform: ‘rotate(‘ + now + ‘deg)’ });
}
}
);
});

 

w3Schools