JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://www.ubhape2.com/css/animate.css">
<img id="animate" class="fear" src="http://www.ubhape2.com/2012/images/september/fear-sign.png" alt="Fear" />
CSS
html,body { overflow: hidden; }
.fear{
position:absolute;
left:150px;
top:0px;
}
#animate {
-moz-animation-delay: 3s;
-webkit-animation-delay: 3s;
-o-animation-delay: 3s;
-ms-animation-delay: 3s;
animation-delay: 3s;
}
JavaScript
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j('#animate').addClass('animated hinge');
});