放大镜:
jQuery内容:
$(function(){ // 放大镜的写法与应用 $(".small_Box").hover(function(){ // find =》向内查找子节点 $(this).find(".float_layer").show(); $(".big_Box").show(); },function(){ $(this).find(".float_layer").hide(); $(".big_Box").hide(); }); $(".small_Box").mousemove(function(e){ // 是鼠标位置 var x = e.offsetX, y = e.offsetY; // 小黑框的左上角位置,-100 为保证让鼠标永远在小黑裤的中间位置 var left = x - 100,top = y - 100; // 让left和top不能为负值 if (left < 0) { left = 0; } if (top < 0) { top = 0; } if (left > 200) { left = 200; } if (top > 200) { top = 200; } // 小黑框 $(this).find(".float_layer").css({ top:top+"px", left:left+"px", }); // 大图片 $(".big_Box img").css({ top:-2 * top +"px", left:-2 * left +"px", }) }); });
效果图: