Skip to content

Instantly share code, notes, and snippets.

View NklsJ's full-sized avatar

Niklas Juhonen NklsJ

  • Helsinki / Espoo, Finland
View GitHub Profile
@NklsJ
NklsJ / useScrollPosition.js
Last active June 4, 2019 07:31
Simple react hook for getting window Y scroll position
import {useState, useEffect} from 'react'
const useScrollPosition = () => {
const [scrollPosition, setScrollPosition] = useState(-1)
useEffect(() => {
const handleScroll = () => setScrollPosition(window.scrollY)
window.addEventListener('scroll', handleScroll)