JSFiddle - React, Tailwind, and code Playground
by Ganesh
HTML
<script type="text/javascript" src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotate.js"></script>
<img src="https://www.google.com/images/srpr/logo3w.png" id="image">
<!----------developed by GkDreamz.com--------------->
CSS
#image{
margin:100px 100px;
}
/* Customized by GkDreamz.com*/
JavaScript
$(document).ready(function() {
//set browser's window size
width = screen.width;
height = screen.height;
$('#bg').css({'min-height': height, 'min-width': width});
//continuously rotate wings
var rotation = function (){
$("#image").rotate({
angle:0,
animateTo:360,
callback: rotation,
easing: function (x,t,b,c,d){
return c*(t/d)+b;
}
});
}
rotation();
});
//customized by GkDreamz.com