我想获得类似于谷歌图像的效果,当我们将鼠标悬停在任何图像上时,图像会弹出并出现在前面,而不会影响其他图像的原始位置。此外,这只发生在光标是静态的时候,而不是我们随机移动它的时候。
我试图缩放图像,但其他图像正在失去其原始位置。我的代码如下-->
$("img").mouseover(function(){
$(this).css("cursor","pointer")
$(this).animate({zoom: '107%'}, 'fast')
}).mouseout(function(){
$(this).animate({zoom: '100%'}, 'fast')
});