@gitgw/use-scroll

1.0.1 • Public • Published

@gitgw/use-scroll

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

Installation

npm

npm i @gitgw/use-scroll

yarn

yarn add @gitgw/use-scroll

Usage

import React from "react";
import useScroll from "@gitgw/use-scroll";

function App() {

  const {x, y} = useScroll();
  console.log(x, y);

  return (
    <div className="App"></div>
  );
}

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}

Package Sidebar

Install

npm i @gitgw/use-scroll

Weekly Downloads

3

Version

1.0.1

License

MIT

Unpacked Size

1.76 kB

Total Files

4

Last publish

Collaborators

  • githubgw