Hi guys,
I am looking for a news ticker pretty much identical to the one on twitter (the one the scrolls horizontally)
The main things I am looking for:
Continuous scroll
- When an element is no longer visible it is removed and put at the very back of the list.
No Pause
- It should be a smooth scroll, not a scroll, pause, scroll
I attempted to do it by
Setting the ul to overflow: hidden
Animating the li:first
using margin-left: {current_margin_left}-10
every second
But it goes way to fast and breaks.
Is there anything that matches this description?