Mousewheel wheel event

Source: Internet
Author: User

Native scroll event: Firefox uses different events from other browsers

 /*  * Scroll wheel events are special only in Firefox. Use dommousescroll; Use mousewheel in other browsers ;*  */  //  Firefox Document. Body. addeventlistener ("dommousescroll ", Function  (Event ){  VaR Direction = event. Detail & (event. Detail> 0? "Mousedown": "mouseup" ); Console. Log (Direction );}); //  Chrome and IE Document. Body. onmousewheel = Function  (Event) {event = Event | Window. event;  VaR Direction = event. wheeldelta & (event. wheeldelta> 0? "Mouseup": "mousedown" ); Console. Log (Direction );}; 

 

Events with jquery compatibility

 //  Jquery-compatible scroll wheel events $ (Document). On ("mousewheel dommousescroll ", Function  (E ){ VaR Delta = (E. originalevent. wheeldelta & (E. originalevent. wheeldelta> 0? 1:-1) | //  Chrome & IE (E. originalevent. Detail & (E. originalevent. Detail> 0? -1: 1 )); //  Firefox          If (Delta> 0 ){  //  Roll up Console. Log ("wheelup" );}  Else   If (Delta <0 ){  //  Roll down Console. Log ("wheeldown" );}}); 

 

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.