首页 > 其他 > 详细

元素拖拽

时间:2018-07-04 14:59:35      阅读:146      评论:0      收藏:0      [点我收藏+]

元素拖拽

    <hr>

    <style>
        #box{
            position: fixed;
            width:200px;
            height:200px;
            background:#ccc;
            cursor:pointer;
        }
    </style>
    <div id="box"></div>


    <script>
        //获取元素
        var box = document.getElementById("box");


        //绑定事件
        box.onmousedown = function(ev){
            var e = ev || window.event;

            //计算 鼠标在元素上的坐标
            var left = e.clientX - box.getBoundingClientRect().left;
            var top = e.clientY - box.getBoundingClientRect().top;


            this.onmousemove = function(ev){
                var e = ev || window.event; //
                //改变元素位置
                box.style.left = (e.clientX - left) + "px";
                box.style.top = (e.clientY - top) + "px";

            }
        }


        box.onmouseup = function(){
            this.onmousemove = function(){
                
            }
        }
    </script>

元素拖拽

原文:https://www.cnblogs.com/1666818961-lxj/p/9263183.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!