当您将鼠标悬停在其上时,我使用 mouseenter 和 mouseleave 以获得更大的图像。如果鼠标移动得太快,mouseleave 不起作用,放大的图像仍然存在。
$(document).ready(function() {
$('.productImg').bind('mouseenter', function(){
if(!$('#zoom_product_image').length){
var maxWidth=$(this).parents('form').width();
var maxHeight=$(this).parents('form').height();
var link=this.src.replace(/small/g, 'big');
$(this).parents('form').append('<img id="zoom_product_image" style="display: none;" src="'+link+'">');
var img=new Image();
img.onload=function(){
$('#zoom_product_image').css({'position': 'absolute', 'border': '1px solid #78C7FF', 'top': '0px', 'left': '0px', 'z-index': '10000', 'opacity': '0.95', 'cursor': 'pointer'});
$('#zoom_product_image').fadeIn(200);
if($('#zoom_product_image').width()>maxWidth){
$('#zoom_product_image').css({'width': maxWidth, 'height': $('#zoom_product_image').height()*(maxWidth/$('#zoom_product_image').width())});
}
if($('#zoom_product_image').height()>maxHeight){
$('#zoom_product_image').css({'height': maxHeight, 'width': $('#zoom_product_image').width()*(maxHeight/$('#zoom_product_image').height())});
}
}
img.src=link;
$('#zoom_product_image').bind('mouseleave', function(){
$('#zoom_product_image').detach();
});
$('#zoom_product_image').bind('click', function(){
window.location.href=$('#zoom_product_image').parent().find('.bigtitle').attr('href');
});
}
});
});