May 6, 2014 at 1:50 pm
#10001325
Keymaster
Hello, you can make a custom JS for that:
1) HTML:
<img class="img-responsive animated" id="anim" src="img/device.png">
2) JS (js/custom.js):
$("#anim").hover(function() {
$(this).addClass("rotateInDownLeft");
});
Please let me know if you have any questions.
Thanks.