This article shares the specific code of JavaScript to achieve the drag effect for your reference. The specific content is as follows 1.1 Basic effects of draggingIdeas: When the mouse is pressed on the box, it is ready to move (the event is added to the object) When the mouse moves, the box follows the mouse (the event is added to the page) When the mouse is lifted, the box stops moving (the event is added to the page) var o = document.querySelector('div'); //Mouse down o.onmousedown = function (e) { //Mouse position relative to the box var offsetX = e.clientX - o.offsetLeft; var offsetY = e.clientY - o.offsetTop; //Mouse movement document.onmousemove = function (e) { o.style.left = e.clientX - offsetX + "px"; o.style.top = e.clientY - offsetY + "px"; } //Mouse up document.onmouseup = function () { document.onmousemove = null; document.onmouseup = null; } } 1.2 Drag and drop issuesIf text appears in the box, or the box itself is an image, due to the default behavior of the browser (text and images can be dragged), it can be done by setting return false. However, intercepting the default behavior is not applicable in earlier versions of IE; you can use global capture to solve the IE problem. 1.2.1 Global capture Global capture is only applicable to lower version IE browsers <button>btn1</button> <button>btn2</button> <script> var bts = document.querySelectorAll('button') bts[0].onclick = function () { console.log(1); } bts[1].onclick = function () { console.log(2); } // bts[0].setCapture() //Add global capture // bts[0].releaseCapture() ; //Release global capture</script> Once a global capture is added for a specified node, other elements on the page will not trigger the same type of event 1.2.2 Full version of drag and drop var o = document.querySelector('div'); //Mouse down o.onmousedown = function (e) { if (o.setCapture) { //IE lower version o.setCapture() } e = e || window.event //Mouse position relative to the box var offsetX = e.clientX - o.offsetLeft; var offsetY = e.clientY - o.offsetTop; //Mouse movement document.onmousemove = function (e) { e = e || window.event o.style.left = e.clientX - offsetX + "px"; o.style.top = e.clientY - offsetY + "px"; } //Mouse up document.onmouseup = function () { document.onmousemove = null; document.onmouseup = null; if (o.releaseCapture) { o.releaseCapture(); //Release global capture} } return false; //Default behavior of standard browsers} 1.3 Drag the borderWidth of visible area: Viewable area height: //Screen height// var h=document.documentElement.clientHeight // var w = document.documentElement.clientWidth; // console.log(h,w); analyze: Maximum left: visible area width - box width Minimum left: 0 Minimum top: 0 Maximum top: height of visible area - height of box 1.4 CollisionThe key to collision is to find the critical value. Name the four sides of the two objects: L1, T1, R1, B1 and L2, T2, R2, B2 If L1 > R2 || T1 > B2 || R1 < L2 || B1 < T2, then there is no collision. <div class="one"> </div> <div class="two"></div> <script> var o = document.querySelector('.one'); var ox = document.querySelector('.two'); //Mouse down o.onmousedown = function (e) { if (o.setCapture) { //IE lower version o.setCapture() } e = e || window.event //Mouse position relative to the box var offsetX = e.clientX - o.offsetLeft; var offsetY = e.clientY - o.offsetTop; //Calculate the maximum left and top margins (borders) var maxLeft = document.documentElement.clientWidth - this.offsetWidth; var maxTop = document.documentElement.clientHeight - this.offsetHeight; //Collision var L2 = ox.offsetLeft; var T2 = ox.offsetTop; var R2 = L2 + ox.offsetWidth; var B2 = T2 + ox.offsetHeight //Mouse movement document.onmousemove = function (e) { e = e || window.event var x = e.clientX - offsetX; var y = e.clientY - offsetY; //Calculate the boundary if (x <= 0) x = 0 if (y <= 0) y = 0 if (x >= maxLeft) x = maxLeft; if (y >= maxTop) y = maxTop; o.style.left = x + "px"; o.style.top = y + "px"; //Calculate collision var L1 = o.offsetLeft; var T1 = o.offsetTop; var R1 = L1 + o.offsetWidth; var B1 = T1 + o.offsetHeight; if (L1 > R2 || T1 > B2 || R1 < L2 || B1 < T2) { // No collision ox.style.backgroundColor = "blue" } else { ox.style.backgroundColor = "orange" } } //Mouse up document.onmouseup = function () { document.onmousemove = null; document.onmouseup = null; if (o.releaseCapture) { o.releaseCapture(); //Release global capture} } return false; //Default behavior of standard browsers} </script> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySql grouping and randomly getting one piece of data from each group
>>: How to skip errors in mysql master-slave replication
In Black Duck's 2017 open source survey, 77% ...
1. Introduction When writing animation effects fo...
Cause of failure Today, when I was writing a caro...
1. Tcl script file circle.tcl code comments #Set ...
Because I wrote a Python program and intensively ...
Now we can use an attribute of input called autoco...
1. Basic steps 1: Install yarn add vue-i18n Creat...
1. View existing modules /usr/local/nginx/sbin/ng...
In this tutorial, we use the latest MySQL communi...
MYSQL is case sensitive Seeing the words is belie...
Achieve results html <div class="containe...
Table of contents Experimental environment Instal...
After the green version of mysql5.6 is decompress...
This article shares with you the solution to the ...
Summarize This article ends here. I hope it can b...