This example uses jQuery to implement a mouse drag image function. First, set up a wrapper. The coordinates in the wrapper are the coordinates of the image movement. #wrapper{ width: 1000px; height:1000px; position:relative; } Set the image div, which is the div to be dragged #div1{ position: absolute; left:0px; top:0px; width: 300px; height: 200px; background: url("d:/Pictures/Earth.jpg"); background-size:contain; } The above sets the positioning of wrapper to relative and div1 to absolute. Next, design the dragging algorithm: The idea is as follows: 1. Let the div follow the mouse when the mouse is clicked 2. Stop following when the mouse is released First, we need a function that will change the coordinates of the div to the current mouse position: First, you need to define several variables to save the current mouse coordinates and the image coordinates. var timer; var mouseX=0; var mouseY=0; var pic_width = parseInt($("#div1").css("width")); var pic_height = parseInt($("#div1").css("height")); Now we need to add an event listener to the wrapper. When the mouse moves in the wrapper, modify the values of the variables mousex and mousey. $("#wrapper").mousemove(function(e){ mouseX = e.clientX; mouseY = e.clientY; }); Write a follow function and call it with a timer $("#div1").mousedown(function(){ timer=setInterval(follow,10); }); $("#div1").mouseup(function(){ clearInterval(timer); }); var follow = function(){ $("#div1").css("left",mouseX-pic_width/2); $("#div1").css("top",mouseY-pic_height/2); }; The complete code is as follows: <!doctype html> <html> <head> <script type = "text/javascript" src = "jquery.js"></script> <style type = "text/css"> #wrapper{ width: 1000px; height:1000px; position: relative; background: linear-gradient(lightblue,white); font-size: 40px; } #div1{ position: absolute; left:0px; top:0px; width: 300px; height: 200px; background: url("d:/Pictures/Earth.jpg"); background-size:contain; } </style> </head> <body> <div id = "wrapper"> Lorem, ipsum dolor sit amet consectetur adipisicing elit. Impedit numquam accusamus explicabo praesentium laudantium et accusantium, ab ipsum, excepturi necessitatibus quos iste ad qui deleniti sed debitis reiciendis quam nisi. <div id = "div1"> </div> </div> <script> var timer; var mouseX=0; var mouseY=0; var pic_width = parseInt($("#div1").css("width")); var pic_height = parseInt($("#div1").css("height")); $("#wrapper").mousemove(function(e){ mouseX = e.clientX; mouseY = e.clientY; }); $("#div1").mousedown(function(){ timer=setInterval(follow,10); }); $("#div1").mouseup(function(){ clearInterval(timer); }); var follow = function(){ $("#div1").css("left",mouseX-pic_width/2); $("#div1").css("top",mouseY-pic_height/2); }; </script> </body> </html> Final result: This is the end of this article about how to use jQuery to drag images with the mouse. For more information about how to use jQuery to drag images with the mouse, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Several common ways to deploy Tomcat projects [tested]
>>: In-depth understanding of MySQL self-connection and join association
Not only do different browsers behave differently...
Mini Program Data Cache Related Knowledge Data ca...
MySQL is a relational database management system....
Those who have played King of Glory should be fam...
1 Start the Docker service First you need to know...
This article shares the specific code of the WeCh...
Docker Compose Docker Compose is a tool for defin...
This article shares the specific code for JavaScr...
If people have been idle for too long, they will ...
Table of contents 1. Function Binding 2. With par...
Table of contents What is two-way data binding Im...
Table of contents 1. Differences between the two ...
1. Install less dependency: npm install less less...
There are obvious differences between volume moun...
Table of contents 1. Introduction to Slow Log 2. ...