Javascript-drag the mouse

Source: Internet
Author: User

Because the mouse does not drag the event (press the mouse and move it), only press, lift, move.

Remember to use a Boolean variable to determine whether an element can be dragged in the previous article "drag layer.

I read some things over the past two days and found that this Boolean variable is not required;

 

Implementation process:

When you press the mouse, bind a processing function to the moving event of the Document Object (of course, it can also be another DOM object), and bind a relief processing function to the mouse.

 

// PressWhen you move the mouse and move it (drag), call the function;FunctionStartselection (event ){...... }//Handler for removing a move;FunctionCancelselection () {$ (document). Unbind ('Mousemove', Startselection). Unbind ('Mouseup', Cancelselection );}//Function called when the mouse is pressedFunctionImgmousedown (event) {$ (document). mousemove (startselection). mouseup (cancelselection );}

$ IMG. BIND ("mousedown", imgmousedown)

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.