1.1.0 • Published 4 years ago

@sook/use-scroll v1.1.0

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

@sook/use-scroll

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

Installation

yarn

yarn add @sook/use-scroll

npm

npm i @sook/use-scroll

Usage

import React from "react";
import useScroll from "@sook/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}