Jump to content

Forum Suggestion


Trebor

Recommended Posts

This idea is for this forum.

When looking at messages and say you are done and want to go back to the top, how about a floating arrow off to the right hand side that if you click it that it will take you to the top?

Ebay has it on their site

image.png.d3465c0b553a1270b82c7013180d2236.png

Just a thought

Link to comment
Share on other sites

It shouldn't be that bad to implement neccesarily either as you can do it simply with javascript:
https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollY

window.scroll(0,0);

^ You then take that on onClick of that button element.

It can look and feel pretty with a smooth scroll applied to the html or body tag, or whatever container actually has the scroll. ( Haven't looked at it yet for here but could find out ).

https://www.w3schools.com/howto/howto_css_smooth_scroll.asp#section1

html {
  scroll-behavior: smooth;
}

 

It is a question of how easy it is to edit the code of these forums,

"Powered by Invision Community" 

at the very bottom. Just a theme or something that takes more control?

Edited by MittelDank
Link to comment
Share on other sites

×
×
  • Create New...