Home Web Front-end JS Tutorial Detailed explanation of javascript event processing and mouse drag effect implementation_javascript skills

Detailed explanation of javascript event processing and mouse drag effect implementation_javascript skills

May 16, 2016 pm 05:53 PM
event handling mouse drag

Let’s first look at the rendering of the layer to be dragged (simulation window).


To achieve the dragging effect: press the left mouse button on the title bar above the window, move the mouse at the same time, and the window will move accordingly.
Window:

Copy code The code is as follows:





A little preparation:
Let the window be free Move, then the position of the window should be absolute;
Add a title bar to the window. Here, a layer placed on the top of the window is used, and the mouse cursor of the title bar is set to drag (move). ) shape (when dragging in chrome, the cursor will turn into a text cursor, and will recover after releasing the mouse button).
Copy code The code is as follows:

#win {
position:absolute;
width:480px;
height:320px;
background-color:#d4d4d4;
border: 1px solid #4d4d4d;
}
#win_header {
width:480px;
height:48px;
background-color:#4d4d4d;
cursor:move;
}

Define a utility function to get the element with the specified ID attribute:
Copy code The code is as follows:

function $id(id) {
return document .getElementById(id);
}

Define a browser core identity isIE:
var isIE = (window.navigator.userAgent.indexOf("IE") == -1 ) ? false : true;
Get the window element and its title bar:
Copy the code The code is as follows:

var win = $id("win");
var header = $id("win_header");

In order to conveniently record the position information of the mouse and window, Create a position:
Copy code The code is as follows:

var pos =function(x, y ) {
this.x = x;
this.y = y;
};

Set an initial position for the window (left value and top value of css).
I don’t know why here. If you don’t use js to set these two attributes, you can’t get the value, and it won’t work if you specify them in CSS.
Copy code The code is as follows:

var originalpos = new pos(20, 20);

During the process of dragging the window, the values ​​that need to be recorded are:
The position of the mouse cursor when the mouse is pressed
Copy code The code is as follows:

var oldmouse =new pos(0, 0);

The position of the window when the mouse is pressed
var oldpos = new pos(0, 0);
The new position of the window when the mouse moves
var newpos = new pos(0, 0);
Set the initial position of the window
Copy code The code is as follows:

win.style.left = originalpos.x "px";
win .style.top = originalpos.y "px";

Because of the differences in browsers (IE and non-IE), the methods of binding event handlers to elements are different (IE uses attachEvent, non-IE IE uses addEventListener), in order to simplify the event binding operation, define an event binding function:
Copy the code The code is as follows:

function bind(ev, func) {
if(isIE) {
 header.attachEvent("on" ev, func);
} else {
 header. addEventListener(ev, func, false);
}
}

After doing these things, you can start processing mouse events.
In this program, you only want the left mouse button to drag the window, and no other keys can, so you need to determine whether the left mouse button is pressed. This judgment will be used in several functions, so it is extracted into a function and judged by the passed in parameters (mouse key value, that is, which key was pressed). Here, you need to pay attention to the differences between browsers: the value of the left mouse button in IE is 1, while the value in non-IE is 0.
Copy code The code is as follows:

function isLeftButton(btn) {
if(isIE) {
if(btn == 1)
return true;
else
return false;
} else {
if(btn == 0)
return true;
else
return false;
}
}

Drag action is done by pressing and moving the left mouse button. To share this action, the mouse first triggers the press action (mousedown), and then triggers the move action (mousemove). In order to determine whether it is really dragging or just the mouse passing over the window, set a variable to record the mouse down state:
var mousedown = false;
Due to compatibility issues in CSS, use here js to control the color change when the mouse is hovering over the window title bar.
Hovering
Copy code The code is as follows:

function over(e){
Header.style.backgroundColor = "#5d5d5d";
}

Leave
Copy code The code is as follows:

function out(e) {
header.style.backgroundColor = "#4d4d4d";
// Sometimes the mouse will not be released Leave the window,
// At this time, the window is released from the control of the mouse by triggering the mouse release event
up(e);
}

Press
In the press event, you need to first determine whether the left button of the mouse is pressed;
If so, the position of the mouse and window at this time will be recorded, otherwise it will not be recorded.
Copy code The code is as follows:

function down(e) {
e = e || event;
if(!isLeftButton(e.button))
return;
mousedown = true;
oldmouse.x = e.clientX;
oldmouse.y = e.clientY ;
oldpos.x = parseInt(win.style.left.replace("px", ""));
oldpos.y = parseInt(win.style.top.replace("px", "" ));
}

Release
Copy code The code is as follows:

function up(e) {
if(!isLeftButton(e.button))
return;
mousedown = false;
}

Moving
involves two mouse events:
press and move. The movement action is valid only when the left mouse button is pressed.
The new position of the window is determined by the movement distance of the mouse in the dragging state (the distance between X and Y). That is:
The new mouse position is sent to the position recorded when the left button is pressed, and a distance is obtained. Then the position of the window is added to the distance moved by the mouse to obtain the new position of the window.
Copy code The code is as follows:

function move(e) {
if(! isLeftButton(e.button))
return;
if(mousedown) {
e =e || event;
newpos.x = e.clientX - oldmouse.x;
newpos. y = e.clientY - oldmouse.y
win.style.left = (oldpos.x newpos.x) "px";
win.style.top = (oldpos.y newpos.y) "px" ;
}
}

Event processing has been written. Finally, let’s bind the elements. Amen!
Copy code The code is as follows:

bind("mouseover", over);
bind("mouseenter", over);
bind("mouseout", out);
bind("mouseleave", out);
bind("blur", out);
bind( "mousedown", down);
bind("mouseup", up);
bind("mousemove", move);

But there is a problem with dragging in FF. I can only drag it normally for the first time, but it gets a little messy after that!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Python GUI programming: Get started quickly and easily create interactive interfaces Python GUI programming: Get started quickly and easily create interactive interfaces Feb 19, 2024 pm 01:24 PM

A brief introduction to python GUI programming GUI (Graphical User Interface, graphical user interface) is a way that allows users to interact with computers graphically. GUI programming refers to the use of programming languages ​​to create graphical user interfaces. Python is a popular programming language that provides a rich GUI library, making Python GUI programming very simple. Introduction to Python GUI library There are many GUI libraries in Python, the most commonly used of which are: Tkinter: Tkinter is the GUI library that comes with the Python standard library. It is simple and easy to use, but has limited functions. PyQt: PyQt is a cross-platform GUI library with powerful functions.

How to manage a complete circular queue of events in C++? How to manage a complete circular queue of events in C++? Sep 04, 2023 pm 06:41 PM

Introduction CircularQueue is an improvement on linear queues, which was introduced to solve the problem of memory waste in linear queues. Circular queues use the FIFO principle to insert and delete elements from it. In this tutorial, we will discuss the operation of a circular queue and how to manage it. What is a circular queue? Circular queue is another type of queue in data structure where the front end and back end are connected to each other. It is also known as circular buffer. It operates similarly to a linear queue, so why do we need to introduce a new queue in the data structure? When using a linear queue, when the queue reaches its maximum limit, there may be some memory space before the tail pointer. This results in memory loss, and a good algorithm should be able to make full use of resources. In order to solve the waste of memory

Event processing library in PHP8.0: Event Event processing library in PHP8.0: Event May 14, 2023 pm 05:40 PM

Event processing library in PHP8.0: Event With the continuous development of the Internet, PHP, as a popular back-end programming language, is widely used in the development of various Web applications. In this process, the event-driven mechanism has become a very important part. The event processing library Event in PHP8.0 will provide us with a more efficient and flexible event processing method. What is event handling? Event handling is a very important concept in the development of web applications. Events can be any kind of user row

How to implement mouse dragging line function in JavaScript? How to implement mouse dragging line function in JavaScript? Oct 19, 2023 am 11:51 AM

How to implement mouse dragging line function in JavaScript? Abstract: The mouse dragging line function is very common in many projects and can be used to create interactive charts, draw sketches, etc. This article will introduce how to use JavaScript to implement the mouse dragging line function, and provide specific code examples to help readers better understand and apply it. Introduction: In web development, it is often necessary to achieve some highly interactive effects, and the mouse dragging line function is one of the common requirements. By dragging the mouse, we

How to solve the delay problem when dragging windows with the mouse in Windows 10 How to solve the delay problem when dragging windows with the mouse in Windows 10 Jan 06, 2024 pm 05:28 PM

In the process of using the win10 system, if you encounter delays and freezes when dragging the window with the mouse, the editor thinks it should be a problem with the system settings or a driver problem. You can try to reinstall the driver or use the main.cpl code during operation to solve the problem. Let's take a look at the detailed solution to the delay in dragging the window with the mouse in Win10. What to do if there is a delay when dragging the window with the mouse in Win10: Method 1 (common to wired and wireless): 1. On the Win10 system desktop, press the "win+r" shortcut key to open the run window, enter: main.cpl and press Enter to confirm. 2. Then open the mouse properties dialog box, click the mouse button, and adjust the mouse double-click speed by sliding the cursor in "Double-click speed". 3. Then click

What is the meaning of bubbling events What is the meaning of bubbling events Feb 19, 2024 am 11:53 AM

Bubbling events mean that in web development, when an event is triggered on an element, the event will propagate to upper elements until it reaches the document root element. This propagation method is like a bubble gradually rising from the bottom, so it is called a bubbling event. In actual development, knowing and understanding how bubbling events work is very important to handle events correctly. The following will introduce the concept and usage of bubbling events in detail through specific code examples. First, we create a simple HTML page with a parent element and three children

Practical applications of event bubbling and applicable event types Practical applications of event bubbling and applicable event types Feb 18, 2024 pm 04:19 PM

Application scenarios of event bubbling and the types of events it supports. Event bubbling means that when an event on an element is triggered, the event will be passed to the parent element of the element, and then to the ancestor element of the element until it is passed to the root node of the document. It is an important mechanism of the event model and has a wide range of application scenarios. This article will introduce the application scenarios of event bubbling and explore the types of events it supports. 1. Application scenarios Event bubbling has a wide range of application scenarios in web development. Here are several common application scenarios. form validation in form

Analysis of v-on directive in Vue: how to handle form submission events Analysis of v-on directive in Vue: how to handle form submission events Sep 15, 2023 am 09:12 AM

Analysis of the v-on directive in Vue: How to handle form submission events In Vue.js, the v-on directive is used to bind event listeners and can capture and process various DOM events. Among them, processing form submission events is one of the common operations in Vue. This article will introduce how to use the v-on directive to handle form submission events and provide specific code examples. First of all, it is necessary to clarify that the form submission event in Vue refers to the event triggered when the user clicks the submit button or presses the Enter key. In Vue, you can pass

See all articles