Practical Training Demo1-album-detail的jQuery-放大镜的写法

放大镜:

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",
        })
    });
});

效果图:

 

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...