JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://github.com/Abjorn/jquery-wiggle/raw/master/jquery-wiggle.js"></script>
<script src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotateCompressed.js"></script>
<iframe src="http://fiddle.jshell.net/FuV8R/20/show/light/" class="wiggler" width="320" height="240"></iframe>
CSS
body {overflow-x:hidden}
.wiggler {float:left}
JavaScript
$(function () {
for(i=0;i<10;i++){
$(".wiggler:first").clone().appendTo("body");
}
$('.wiggler').each(function(){
$(this).load(function(){
$(this).wiggle({
waggle : 10+Math.random()*20,
duration : 5
});
$(this).rotate(Math.random()*360);
});
})
});