How would you call this element?

Viewed 32

I am trying to make a slider like this but I'm not sure where to start or how to start looking for information as I don't even know how to call it.

Is there a specific name for this? I came across Marquee but I think that is a different thing, it's basically a slider that goes infinitely, but instead of you moving the slider, the whole tape moves and the selector is the center.

Slider

1 Answers

Maybe I'm wrong, but I think this way. Make slider with scroll-snap mandatory. Start with div, which is two times wider than the viewport. (y-axis overflow). Inside that div, put segments of your slider with values. (map array of values).

Your slider segment

On when the right side of the container riches viewport, you can do the math and calculate new values for the array you are mapping

Related