JS wheel event onmousewheel usage introduction_javascript skills
May 16, 2016 pm 05:17 PMIn a typical application, the mouse wheel scrolls to control the size of pictures or text. For example, the Mousewheel event is used in interactive effects such as rotating the mouse wheel to achieve zooming. In most browsers (IE6, IE7, IE8, Opera 10, Safari 5), the "mousewheel" event is provided. The compatibility difference of the scroll wheel event is somewhat eclectic. It is not the IE8-party and other parties in the past, but the FireFox party and other parties. Firefox 3.5 does not support this event, but fortunately Firefox 3.5 provides another one. Equivalent event: "DOMMouseScroll", the compatible code is as follows:
// isFirefox is pseudo code, you can implement it yourself
mousewheel = isFirefox ? "DOMMouseScroll" : "mousewheel";
"event.wheelDelta" attribute value in the "mousewheel" event: the returned value, If it is a positive value, it means the scroll wheel is scrolling upward; if it is a negative value, it means the scroll wheel is scrolling down; the returned values are all multiples of 120, that is: amplitude = returned value / 120.
"event.detail" attribute value in the "DOMMouseScroll" event: the returned value. If it is a negative value, it means the wheel is scrolling upward (just the opposite of "event.wheelDelta"). If it is a positive value, it means the wheel is rolling down. Scroll; the returned values are all multiples of 3, that is: amplitude = returned value/3.
The "mousewheel" event is a special case in Opera 10. It has both the "event.wheelDelta" attribute and the "event.detail" attribute.

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use JS and Baidu Maps to implement map pan function

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS

Recommended: Excellent JS open source face detection and recognition project

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts

How to create a stock candlestick chart using PHP and JS

How to use JS and Baidu Maps to implement map polygon drawing function

How to use JS and Baidu Map to implement map click event processing function

How to use JS and Baidu Maps to implement map heat map function
