Jquery Bouncing Images悬停

时间:2010-06-24 11:36:05

标签: jquery image

当我们悬停图片时如何使用jQuery弹出图像?

2 个答案:

答案 0 :(得分:4)

这就像

$('img').bind('mouseenter', function(){
     $(this).effect("bounce", { times:3 }, 300);
});

使用jQuery UI效果。

答案 1 :(得分:4)

我不确定您的确切需求,但如果您使用的是jQueryUI,则会产生bounce效果。

试一试: http://jsfiddle.net/G8Ste/

$('#myimage').mouseenter(function() {
    $(this).effect('bounce',500);
});​

您可以在此处测试各种效果:

http://jqueryui.com/demos/effect/