Infinite scrolling carousel problem

Can someone help with my infinite carousel slider? https://github.com/GeorgeDash/chronotask It's jumping after the animation is finished and I tried many ways (including asking AI), but it still doesn't work. Link to the live version: https://chronotask.vercel.app/
GitHub
GitHub - GeorgeDash/chronotask
Contribute to GeorgeDash/chronotask development by creating an account on GitHub.
13 Replies
ἔρως
ἔρως2mo ago
is this code made by ai?
GeorgeCraft225
GeorgeCraft225OP2mo ago
The final version - yes, but before that I tried.
ἔρως
ἔρως2mo ago
that's why the javascript makes no sense
GeorgeCraft225
GeorgeCraft225OP2mo ago
What should I fix there? And perhaps - is there a CSS-only solution?
ἔρως
ἔρως2mo ago
im surprised that any browser doesn't crash after 2 seconds
GeorgeCraft225
GeorgeCraft225OP2mo ago
LOL, wdym?
ἔρως
ἔρως2mo ago
oh, wait, it shouldn't crash, i misread it it's still not a good idea, as it is just stretching everything and making it 2x wider
GeorgeCraft225
GeorgeCraft225OP2mo ago
Yeah, I want to remove that, but I don't know how to make it work. And I'll ask again - is there a CSS-only solution you possibly know?
ἔρως
ἔρως2mo ago
no, you need js the easiest way is to: - use a css animation to translate the element - detect the end of the animation - move the first element to the end and reset the animation in js
GeorgeCraft225
GeorgeCraft225OP2mo ago
OK, I'll try something. Thanks for the help! 😊
ἔρως
ἔρως2mo ago
also, dont make ai write your code more often than not, it's just sloppy slop you should only clone the elements if there aren't enough to fill the space and only clone until the element is overflowing and if you clone, just do a deep clone, not a shallow clone of the elements it's a waste of time
aditya1305t
aditya1305t5w ago
Hey, i know you have already marked this as solved, but i would like to link this YT video of a css only carousel. I am a newbie and found this helpful. https://youtu.be/Reu0hHbis5w?feature=shared
ἔρως
ἔρως5w ago
if you follow this, which seems to work well, don't do the * { margin: 0; } i don't know why people do that

Did you find this page helpful?