JSFiddle - React, Tailwind, and code Playground

by PHPsycho

HTML

<div id="id"></div>

CSS

#id{ width: 30px; height: 30px; border: 2px solid #333; }

JavaScript

$('#id').hover(
    function(){
        $(this).animate({'-moz-transform':'rotate(10deg)','-webkit-transform':'rotate(10deg)'},1000);
    }
    ,
    function(){
        $(this).animate({'-moz-transform':'rotate(-10deg)','-webkit-transform':'rotate(-10deg)'},1000);
    }
);