欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

原生js实现拼图效果

程序员文章站 2022-03-13 11:49:48
本文实例为大家分享了原生js实现拼图效果的具体代码,供大家参考,具体内容如下需求:每次刷新页面后,右侧容器内会随机排列碎片图片,鼠标按下拖动到左侧,在正确坐标一定范围内,图片会自动吸附过去,放好的碎片...

本文实例为大家分享了原生js实现拼图效果的具体代码,供大家参考,具体内容如下

需求:每次刷新页面后,右侧容器内会随机排列碎片图片,鼠标按下拖动到左侧,在正确坐标一定范围内,图片会自动吸附过去,放好的碎片不能再进行拖动。

先来看一下效果:

原生js实现拼图效果

js代码 :

//执行初始函数
init();
function init() {
    //创建一个碎片容器
    var frag = document.createdocumentfragment();
    document.body.style.margin = "0px";
    //创建左侧图片容器
    var ul=createe("ul",{
        width: "260px",
        height: "400px",
        backgroundimage: "url(./img/3.jpg)",
        borderright: "1px solid #000",
        borderbottom: "1px solid #000",
        liststyle: "none",
        padding: "0px",
        margin: "0px",
        opacity: ".3",
        position: "absolute"
    })
    //创建li,显示图片中的边框
    var li=createe("li",{
        width: "51px",
        height: "79px",
        borderleft: "1px solid #000",
        bordertop: "1px solid #000",
        padding: "0px",
        margin: "0px",
        float: "left"
    })
    //循环,将li复制插入到ul中
    for (i = 0; i < 25; i++) {
        ul.appendchild(li.clonenode(false));
    }
    //将ul插入到碎片容器中
    frag.appendchild(ul);
    //创建右侧图片容器,因为img要相对body定位,所以它的父容器不能有定位属性
    var div=createe("div",{
        width: "302px",
        height: "302px",
        border: "1px solid #000",
        marginleft: "400px"
    })
    //创建图片标签
    for (var j = 0; j < 5; j++) {
        for (var k = 0; k < 5; k++) {
            var img=createe("img",{
                width: "52px",
                height: "80px",
                position: "absolute",
                left: math.floor(math.random() * 250) + 400 + "px",
                top: math.floor(math.random() * 220) + "px"
            })
            img.src = "./img/img" + j + "-" + k + ".jpg";
            //图片侦听mousehandler事件
            img.addeventlistener("mousedown", mousehandler);
            div.appendchild(img);
        }
    }
    //将div插入到碎片容器中,再将frag插入到body中
    frag.appendchild(div);
    document.body.appendchild(frag);
}
//鼠标事件
function mousehandler(e) {
    switch (e.type) {
        case "mousedown":
            //清除点击后移动图片的默认效果
            e.preventdefault();
            console.log(this.src.match(/img\/img(.*)\.jpg/))
            //获取到图片路径中的数字,计算图片正确的位置坐标
            var imgsrc = this.src.match(/img\/img(.*)\.jpg/)[1].split("-");
            var rightl=imgsrc[1]*52;
            var righttop=imgsrc[0]*80;
            //如果图片正确放入,直接跳出
            if (this.style.left===rightl+"px" && this.style.top===righttop+"px") return;
            //将当前图片的z-index设为最大
            this.style.zindex = "999";
            //将e.offsetx、e.offsety、当前点击图片对象存入到document中
            document.x = e.offsetx;
            document.y = e.offsety;
            document.elem = this;
            document.rightl=rightl;
            document.righttop=righttop;
            //document侦听mousemove事件和mouseup事件
            document.addeventlistener("mousemove", mousehandler);
            document.addeventlistener("mouseup", mousehandler);
            break;
        case "mousemove":
            //自动吸附的距离大小
            var gap = 20;
            //设置当前的图片跟着鼠标移动而移动
            let x=e.clientx - this.x;
            let y=e.clienty - this.y;
            this.elem.style.left = x + "px";
            this.elem.style.top = y + "px";
            //如果当前图片的位置坐标在一定范围内,则让它自动吸附
            if (x>=this.rightl-gap &&x<=this.rightl+gap&&
                y>=this.righttop-gap &&y<=this.righttop+gap) {
                this.elem.style.left = this.rightl + "px";
                this.elem.style.top = this.righttop + "px";
            }
            break;
        case "mouseup":
            //鼠标松开的时候,将当前图片的z-index改小
            this.elem.style.zindex = "10";
            //鼠标松开后,移除document的mousemove和mouseup事件,清空数据,防止内容泄露
            this.removeeventlistener("mousemove", mousehandler);
            this.removeeventlistener("mouseup", mousehandler);
            this.elem=null;
            break;
    }
}
//创建标签
function createe(elem,styledata){
    var elem=document.createelement(elem);
    for(var prep in styledata){
        elem.style[prep]=styledata[prep];
    }
    return elem;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

相关标签: js 拼图