@ej-hooks/use-scroll

1.0.0 • Public • Published

@ej-hooks/use-scroll

React Hook to get X/Y coordinates of current position of the scroll.

Installation

yarn

yarn add @ej-hooks/use-scroll

npm

npm i @ej-hooks/use-scroll

Usage

import React from 'react';
import useScroll from '@ej-hooks/use-scroll';
function App() {
  const { x, y } = useScroll();
  return (
    <h1>
      We are in: {x} / {y}
    </h1>
  );
}

Return

Return value Type Description Default value
Coords Object An object containing the x/y coordinates of the current scroll position {x:0, y:0}

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    0

Package Sidebar

Install

npm i @ej-hooks/use-scroll

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

1.91 kB

Total Files

4

Last publish

Collaborators

  • eunjinfizz