当前位置: 首页 > article >正文

盒子拖拽效果,原生js实现

原生js实现拖拽效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>hello2</title>
    
</head>
<style>
    #box1{
    position: absolute;
    width: 100px;
    height: 100px;
    background: blue;
    cursor: move;
    }
</style>
<body>
   
     <div id="box1">
   
     </div>   
    
</body>
</html>
<script type="text/javaScript">
    //     拖拽box1元素
    // 拖拽的流程
    // 1.当鼠标在被拖拽元素上按下时,开始拖拽 onmousedown
    // 2。当鼠标移动时被拖拽元素跟随鼠标移动 onmousemove
    // 3。当鼠标松开时,被拖拽元素固定在当前位置 onmouseup
    window.onload = function(){
        
        //获取box1
        var box1 = document.getElementById("box1");
        //为box1绑定一个鼠标按下事件/
        //当鼠标在被拖拽元素上按下时,开始拖拽 onmousedown
        box1.onmousedown = function(event){
        
            //设置box1捕获所有鼠标按下的事件
            // if(box1.setCapture){
            //     box1.setCapture();
            // }
            // box1.setCapture && box1.setCapture();
             var event = event || window.event;
            //div的偏移量 鼠标clentX- 元素.offsetLeft
            //div的偏移量 鼠标.clentY - 元素.offsetTop
            var ol = event.clientX - box1.offsetLeft;
            var ot = event.clientY - box1.offsetTop;
            
            //为document绑定一个onmousemove事件
            document.onmousemove = function(event){
                var event = event  || window.event;
                //当鼠标移动时被拖拽元素跟随鼠标移动 onmousemove
                //获取鼠标的坐标
                var left = event.clientX -ol;
                var top = event.clientY- ot;
                //修改box1的位置
                box1.style.left = left+"px";
                box1.style.top = top+"px";
                
            };
            //为元素绑定一个鼠标松开事件
            document.onmouseup = function(event){
                //当鼠标松开时,被拖拽元素固定在当前位置 onmouseup
                //取消document的onmousemove事件
                this.onmousemove = null;
                //取消document的onmouseup事件
                this.onmouseup = null;
                console.log("nihao");
                //当鼠标松开时,取消对事件的捕获
                // box1.releaseCapture();
                // box1.releasePointerCapture && box1.releasePointerCapture();
            };
            //当我们拖拽一个网页中的内容时,浏览器会默认去搜索引擎中搜索内容此时会导致拖拽功能的异常,这个是浏览器提供的默认行为,如果不希望发生这个行为,则可以通过return false来取消默认行为
            //不这对IE8不起作用
            return false;
        };
    };
    
</script>

效果图


http://www.kler.cn/a/5131.html

相关文章:

  • 6 分布式限流框架
  • vue3如何使用bus(事件总线)
  • Unity3D使用GaussianSplatting加载高斯泼溅模型
  • 直流无刷电机控制(FOC):电流模式
  • python无需验证码免登录12306抢票 --selenium(2)
  • IDEA配置maven和git并如何使用maven打包和git推送到gitlab
  • 【Linux内网穿透】使用SFTP工具快速实现内网穿透
  • 【C语言】文件操作
  • 神策数据如何帮助企业实现营销自动化?
  • yolov5模型训练流程
  • 2023西安交通大学软件工程915考研经验帖(初试+复试)
  • 11 容器常用命令
  • *(void**)解析——如何设计可以在32位下访问到内存区域的前4个字节,在64位下访问到前8个字节?
  • 面试官:ThreadLocal了解吗?用过吗?原理是什么?底层数据如何存储的?
  • [oeasy]python0122_日韩字符_日文假名_JIS_Shift_韩国谚文
  • 蓝桥杯刷题冲刺 | 倒计时8天
  • 2023年超全的Android面经(23/30)设计模式安卓源码案例
  • 学术论文等级与分类标准——JCR
  • Element Plus 实例详解(五)___Scrollbar 滚动条
  • 语句【C++】
  • linux创建守护进程
  • Mybatis(一)-------
  • shell 脚本之一键部署安装 Nginx
  • 并查集和哈希表的实现
  • 【Python】线程
  • java企业级信息系统开发学习笔记02初探spring——利用组件注解符精简spring配置文件