首页 > 其他 > 详细

传统拖着方式第一篇

时间:2018-05-05 19:17:15      阅读:192      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>传统拖拽</title>
     <style type="text/css">
     #dialog{
         position: relative;
         width: 200px;
         top:50px;
         left:100px;
     }
     #title{
         width: 100%;
         height:50px;
         background:#D7DEF0;
         line-height: 50px;
         text-align: center;
         cursor:move;
     }
     .content{
         width: 100%;
         height:200px;
         background: #F0F0F0;    
     }
 </style>
 <script src="js/jquery-1.10.1.js"></script>
</head>
<body>
    <div id="dialog" >
        <div id="title"></div>
        <div class="content"></div>
    </div>
    <script type="text/javascript">
        $(document).ready(function(){
     var isMouseDown=false;
     var lastPoint={};
    $("#title").on("mousedown",function(e){
        isMouseDown=true;
        lastPoint.x=e.pageX;
        lastPoint.y=e.pageY;
    }).on("mousemove",function(e){
      if(isMouseDown){
          var dialog=$("#dialog");//获得整个模态框
          var targetX=parseInt(dialog.css("left"))+e.pageX-lastPoint.x;
          var targetY=parseInt(dialog.css("top"))+e.pageY-lastPoint.y;
          //将目标坐标的值给整个框的left,top
          dialog.css("left",targetX+"px");
          dialog.css("top",targetY+"px");
          //更新坐标
          lastPoint.x=e.pageX;
          lastPoint.y=e.pageY;
      }
    }).on("mouseup",function(){//松开鼠标按钮的事件
        isMouseDown=false;
        lastPoint={};
    });
});
   </script>
</body>
</html>

传统拖着方式第一篇

原文:https://www.cnblogs.com/xu991377264/p/8995602.html

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