AfterClass-io / afterclass.io-v2

[alpha] v2 of https://afterclass.io!
https://afterclass-io.vercel.app
MIT License
5 stars 2 forks source link

[Feat][UI] Jump to top button #188

Open Jansen52x opened 2 months ago

Jansen52x commented 2 months ago

Mockups / Screenshots

image Something like the above

Features

Just a simple button that brings you to the top of the page

Implementation

There are a few options: 1) Use native anchor tag with IDs to jump to that element 2) Use useRef to set current element to the Ref and then use element.scrollIntoView(), can make a more smooth transition 3) Use window.scrollTo(), which is similar to 1 without the re-rendering.

Potential Issues