Languages
[Edit]
EN

React - onWheel example

1 points
Created by:
Jun-L
873

In this article, we would like to show you onWheel event in React.

In the example below, we create <div> element with a scrollbar. As we scroll the list inside the div with a mouse wheel, onWheel triggers handleOnWheel method which displays that list is being scrolled.

Runnable example:

// ONLINE-RUNNER:browser;

// Note: Uncomment import lines while working with JSX Compiler.
// import React from 'react';
// import ReactDOM from 'react-dom';

const appStyle = {
  width: '100px',
  height: '100px',
  overflow: 'scroll',
};

const handleOnWheel = () => {
  console.log('onWheel: scrolling the list...');
};

const App = () => {
  return (
    <div style={{ height: '100px' }}>
      <div style={appStyle} onWheel={handleOnWheel}>
        <ul>
          <li>List_item_1</li>
          <li>List_item_2</li>
          <li>List_item_3</li>
          <li>List_item_4</li>
          <li>List_item_5</li>
        </ul>
      </div>
    </div>
  );
};


const root = document.querySelector('#root');
ReactDOM.render(<App />, root );
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join