1.0.1 • Published 5 years ago

@nooks/use-scroll v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

@nooks/use-scroll

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

Installation

yarn

yarn add @nooks/use-scroll

npm

npm i @nooks/use-scroll

Usage

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

function App() {
  const { x, y } = useScroll();
  return (
    <h1>
      We are in: {x} / {y}
    </h1>
  );
}

Return

Return valueTypeDescriptionDefault value
CoordsObjectAn object containing the x/y coordinates of the current scroll position{x:0, y:0}