owaiswiz / useInView

React hook, check if a component is in viewport.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

useInView

Check if your component is in viewport using this simple hook!

Build Status code style: prettier GitHub top language npm bundle size (scoped) David

⭐ ⭐ Check out a working demo here ⭐ ⭐

Install

$ yarn add use-in-view

Usage

import useInView from 'use-in-view';

const AnimatedComponent = () => {
	const offset = 30;
	const [ref, inView] = useInView(offset);

	return (
		<div className={`${inView && 'in-view'}`} ref={ref}>
			Animate me!
		</div>
	);
};

About

React hook, check if a component is in viewport.

License:MIT License


Languages

Language:JavaScript 100.0%