How do I scroll over sections like this website:
I have no problem to do it with the hero using fixed position, but how do I do it if I would like to have it every section?
Here is my public share link: LINK
(how to access public share link)
How do I scroll over sections like this website:
I have no problem to do it with the hero using fixed position, but how do I do it if I would like to have it every section?
Here is my public share link: LINK
(how to access public share link)
Hi, I just ran into this problem and was able to solve it quickly)
It’s very simple:
Relative or Absolute
with z-index = auto
Sticky
with z-index = 1 or 2
(it depends on the elements in the first section, if you used Absolute with some elements there, the z-index must be bigger than the elements)And that’s it) Smooth and type of animation (ease in, out etc.) adjust as desired.
I hope I could help)