试试这个: http: //jsfiddle.net/FPKAP/11/ 或使用悬停:http: //jsfiddle.net/FPKAP/12/
当您将鼠标悬停在 HULK 上时,它会放大,鼠标缩小会缩小。
这应该有助于需要,如果我误解了什么,请让我知道,:)
代码
$('#zoomimg').mouseenter(function() {
$(this).css("cursor","pointer");
$(this).animate({width: "50%", height: "50%"}, 'slow');
});
$('#zoomimg').mouseleave(function() {
$(this).animate({width: "28%"}, 'slow');
});
代码
$('#zoomimg').hover(function() {
$(this).css("cursor", "pointer");
$(this).animate({
width: "50%",
height: "50%"
}, 'slow');
}, function() {
$(this).animate({
width: "28%"
}, 'slow');
});