【发布时间】:2012-04-10 19:53:38
【问题描述】:
当鼠标悬停在图像上并且按住鼠标右键时,我需要缩放图像。类似:
$('img').hover(
function(){
if (the-right-mouse-button-is-pressed){
$(this).animate({
width: $(this).width() *2,
height: $(this).height()*2,
}, 500);
}
},
});
我需要帮助。谢谢。
【问题讨论】:
-
我看到了。这与我的问题不同。顺便谢谢。