@j-hooks/use-scroll
Version:
React Hook to get X/Y coordinates of current position of the scroll.
36 lines (24 loc) • 759 B
Markdown
React Hook to get X/Y coordinates of current position of the scroll.
`yarn add @j-hooks/use-scroll`
`npm i @j-hooks/use-scroll`
```js
import React from "react";
import useScroll from "@j-hooks/use-scroll";
function App() {
const { x, y } = useScroll();
return (
<h1>
We are in: {x} / {y}
</h1>
);
}
```
| Return value | Type | Description | Default value |
| ------------ | ------ | ----------------------------------------------------------------------- | ------------- |
| Coords | Object | An object containing the x/y coordinates of the current scroll position | `{x:0, y:0}` |