1.0.4 • Published 2 years ago

react-scroll-level v1.0.4

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

useScrollLevel - a custom React hook

A lightweight (1 kB) package to easily track scroll percentage in React.js

Install

npm install react-scroll-level

Example

import React from 'react'
import { useScrollLevel } from 'react-scroll-level'

function App() {
  const { scrollHeight, scrollWidth } = useScrollLevel();
  console.log('scrollHeight:', scrollHeight); 
  console.log('scrollWidth:', scrollWidth);
}