React onMouseOverCapture is an event handler that gets triggered whenever the pointer of the mouse is moved on an element or its children. like onMouseOver, but the difference is that onMouseOverCapture acts in the capture phase whereas onMouseOver acts in the bubbling phase i.e. phases of an event.
Prerequisite:
- Introduction and installation of ReactJS
- Phases of JavaScript Event
Syntax:
<element onMouseOverCapture={function}/>
Creating React Application:
Step 1: Create a react project folder, for that open the terminal, and write the command npm create-react-app folder name. Suppose you have already installed create-react-app globally. If you haven’t, install create-react-app globally using the command npm -g create-react-app or install locally by npm i create-react-app.
npm create-react-app project
Step 2: After creating your project folder(i.e. project), move to it by using the following command.
cd project
Project Structure: It will look like this:
Example: In this example, we are adding a text within the <p> tag i.e. ” Move your mouse on this line!”. The onMouseOverCapture event will call onMouseOverCaptureHandler, a function that will show a text “onMouseOverCapture Event!” whenever we move the pointer of the mouse over the element, in the console.
App.js
Javascript
function App() { const onMouseOverCaptureHandler = () => { console.log( "onMouseOverCapture Event!" ); }; return ( <div className= "App" > <h1> Hey Geek!</h1> <p onMouseOverCapture={onMouseOverCaptureHandler}> Move your mouse on this line! </p> </div> ); } export default App; |
Step to Run the Application: Run the application using the following command from the root directory of the project.
npm start
Output: