1.0.0 • Published 3 years ago

@hookplus/use-scroll v1.0.0

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

@hookplus/use-scroll

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

Installation

yarn

yarn add @hookplus/use-scroll

npm

npm i @hookplus/use-scroll

Usage

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