zoukankan      html  css  js  c++  java
  • 纯javaScript实现div层拖动/移位效果 推荐学习

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
    <html>  
     <head>  
        <title>dragDiv.html</title>  
          
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
        <meta http-equiv="description" content="this is my page">  
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">  
        <style type="text/css">  
          body {  
                font-family:Verfana;  
                font-size:11px;  
                color:#333333;  
            }  
           #win {  
                position:absolute;  
                left:50px;  
                top:50px;  
                200px;  
                height:150px;  
                border:1px solid #000000;  
                background:yellow;  
            }  
        </style>  
        <script type="text/javascript">  
           var win;  
           var left = 50;  
           var top = 50;  
           var move = false;  
            function init() {  
                win = document.getElementById("win");  
                win.onmousedown = startDrag;  
                win.onmousemove = drag;  
                win.onmouseup = stopDrag;  
          }  
             
            window.onload = init;  
             
           function startDrag(event) {  
                event = event || window.event;  
                var x = event.pageX || event.x;  
                var y = event.pageY || event.y;  
                left = x - left;  
                top = y - top;  
                win.style.background = "red";  
                move = true;  
          }  
              
         function drag(event) {  
                if(move) {  
                event = event || window.event;  
                   win.style.background = "blue";  
                   var x = event.pageX || event.x;  
                   var y = event.pageY || event.y;  
                   win.style.left = x - left + "px";  
                   win.style.top = y - top + "px";  
                 //captureEvents();  
                    //win.setCapture();  
                 if (!window.captureEvents) {   
                      win.setCapture();      
                } else {  
                     captureEvents();      
                       //window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);      
                  }      
                }  
         }  
             
            function stopDrag(event) {  
               event = event || window.event;  
               win.style.background="yellow";  
               var x = event.pageX || event.x;  
               var y = event.pageY || event.y;  
               left = x - left;  
               top = y - top;  
               move = false;  
               //routeEvent();  
              //win.releaseCapture();  
             if (!window.releaseEvents) {   
                  win.releaseCapture();      
               } else {      
                    releaseEvents();  
                   //window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);      
                }  
            }  
        </script>  
      </head>  
    <body>  
        <div id="win">  
        </div>  
    </body>  
    </html>  
  • 相关阅读:
    Ansible
    Ansible
    MySQL
    JS计算时间差(天,时,分钟,秒)
    cookie,localStorage,sessionStorage的区别
    css布局 -双飞翼布局&圣杯布局
    Python批量爬取网站图片
    vue-cli3中引入图片的几种方式和注意事项
    git常用命令
    vue-cli3的打包并在本地查看
  • 原文地址:https://www.cnblogs.com/wuhuisheng/p/2705718.html
Copyright © 2011-2022 走看看