码迷,mamicode.com
首页 > 其他好文 > 详细

基于jq放大镜的原型扩展

时间:2017-05-09 21:50:49      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:round   on()   top   pen   idt   地址   overflow   ddc   建图   

传入参数图片源地址及放大倍数

//创建节点
$.fn.scale = function(json) {//json.src json.scale
    $(this).html("");
    var width = $(this).width();
    var height = $(this).height();
    //创建图片
    var img = $("<img>");
    $(this).append(img);
    img.css({
            "width": width,
            "height": height
        }).attr("src", json.src)
        //创建图片滤镜
    var div = $("<div>");
    $(this).append(div);
    div.addClass("imgZoom").css({
        "width": width / json.scale,
        "height": height / json.scale,
        "backgroundColor": "rgba(0,0,0,0.2)",
        "position": "absolute"
    }).hide();
    //创建大图显示区域;
    //创建图片滤镜
    var div = $("<div>");
    $(this).append(div);
    div.addClass("imgBigWrap").css({
        "width": width,
        "height": height,
        "position": "absolute",
        "overflow": "hidden",
        "top": 0,
        "left": width
    }).hide();

    //创建大图
    var img = $("<img>");
    div.append(img);
    img.addClass("imgBig").css({
        "width": width * json.scale,
        "height": height * json.scale,
        "position": "absolute",
    }).attr("src", json.src)

    $(this).mousemove(function(e) { //绑定事件
        //创建移动事件
        var evt = window.event || e;
        $(".imgZoom").show();
        $(".imgBigWrap").show();
        var x = evt.clientX - $(this).offset().left - $(".imgZoom").width() / 2;
        var y = evt.clientY - $(this).offset().top - $(".imgZoom").height() / 2;
        $(".imgZoom").css({
            "left": Math.max(Math.min(x, width - $(".imgZoom").width()), 0),
            "top": Math.max(Math.min(y, height - $(".imgZoom").height()), 0)
        });
        $(".imgBig").css({
            "left": -$(".imgZoom").position().left * json.scale,
            "top": -$(".imgZoom").position().top * json.scale
        })
    })
    $(this).mouseout(function() {
        $(".imgZoom").hide();
        $(".imgBigWrap").hide();
    })
}

 

基于jq放大镜的原型扩展

标签:round   on()   top   pen   idt   地址   overflow   ddc   建图   

原文地址:http://www.cnblogs.com/xj921110/p/6832589.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!