Reply To: Animations on Hover

#10001325
Support
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.