I recently got a UI request and found there were no wheels for me to adopt. I wonder if there's a ready solution, or I was in search of the wrong keywords. Or, any suggestions for how to build this kind of wheel.
The UI design was composed of a series of images arranged in a horizontal scroll view. The image array was in fixed length, and it had cyclic rotation. Meanwhile, these images would rotate automatically and consecutively (not in a slide rotation way but in a scroll view way). Lastly, the user could scroll through this view accelerating the rotate speed, slowing down, or pausing it.
My framework is React, so I was looking for React component. I've run through 'marquee' which has auto and endless rotate but it's not intractable. The closest solution would be react-slick, which supports autoplay, scroll, and cyclic rotation, while it rotates discretely, ie. page by page.
Any suggestions?