1.0.1 • Published 3 years ago

use-page-transition v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

usePageTransition Tweet version minzipped size downloads build

Listen for page transition (visibility and persistence) events with a React hook.

Install

  • npm install use-page-transition or
  • yarn add use-page-transition

Use

function App() {
  const [isVisible, isPersistent] = usePageTransition();
  return (
    <p>
      The page is {isVisible ? 'visible' : 'hidden'}
      {isPersistent ? ' and persisted' : ''}.
    </p>
  );
}

Sponsor 💗

If you are a fan of this project, you may become a sponsor via GitHub's Sponsors Program.