当我们悬停图片时如何使用jQuery弹出图像?
答案 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);
});
您可以在此处测试各种效果: