Home Web Front-end JS Tutorial JS wheel event onmousewheel usage introduction_javascript skills

JS wheel event onmousewheel usage introduction_javascript skills

May 16, 2016 pm 05:17 PM
js

In 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:

Copy the code The 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.
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 Article Tags

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)

How to use JS and Baidu Maps to implement map pan function How to use JS and Baidu Maps to implement map pan function Nov 21, 2023 am 10:00 AM

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 Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

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 Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Recommended: Excellent JS open source face detection and recognition project

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

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 create a stock candlestick chart using PHP and JS Dec 17, 2023 am 08:08 AM

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 Maps to implement map polygon drawing function Nov 21, 2023 am 10:53 AM

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 Map to implement map click event processing function Nov 21, 2023 am 11:11 AM

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 How to use JS and Baidu Maps to implement map heat map function Nov 21, 2023 am 09:33 AM

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

See all articles