use-in-viewport
v1.0.0
Published
React hook for check if the current element in viewport
Downloads
5
Maintainers
Readme
use-in-viewport
React hook for check if the current element in viewport.
Author
- name: Martik Avagyan
- email: [email protected]
- github: m-avagyan
Getting started
Installation
npm install use-in-viewport
or yarn add use-in-viewport
Example
import React, { useRef } from 'react';
import useInViewport from 'use-in-viewport';
function Example() {
const elementRef = useRef(null);
const inViewport = useInViewport(elementRef);
return (
<div ref={elementRef}>
Element is {inViewport ? 'in viewport' : 'not in viewport'}
</div>
);
}
export default Example;
Options
root
: element scroll area (by defaultdocument.body
)rootMargin
: element margin from root (by default0px
)threshold
: element visibility threshold (by default0
)
import React, { useRef } from 'react';
import useInViewport from 'use-in-viewport';
function Example() {
const containerRef = useRef(null);
const elementRef = useRef(null);
const inViewport = useInViewport(elementRef, {
root: containerRef,
rootMargin: '20px',
threshold: 1,
});
return (
<div ref={containerRef}>
<div ref={elementRef}>
Element is {inViewport ? 'in viewport' : 'not in viewport'}
</div>
</div>
);
}
export default Example;
Copyright (c) 2022 Martik Avagyan