How to bouncing images using jQuery when we hover the images?
I'm not sure exactly what you're looking for, but if you're using jQueryUI, it has a bounce effect.
Try it out: http://jsfiddle.net/G8Ste/
$('#myimage').mouseenter(function() {
$(this).effect('bounce',500);
});
You can test the various effects here:
http://jqueryui.com/demos/effect/
This would be like
$('img').bind('mouseenter', function(){
$(this).effect("bounce", { times:3 }, 300);
});
using jQuery UI effects.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With