I'm trying to recreate the carousel from a website with purely CSS (no or minimal JS)
I've had various failed attempts and about to give up and use a bloated library
Site: https://madebyshape.co.uk/about/
MadeByShape
About Digital Agency Manchester
MadeByShape are a full service Creative and Digital Design Agency based in Manchester with an outstanding reputation for quality for Branding & Web Design
3 Replies
I suggest that you share your code so that somebody has something to go on when trying to help you.
Yea I would normally provide some code but didn't want somebody to be lead down one of the wrong paths I took, I might add the HTML though
Yes, and this one has some complex rotation that I can't figure out
If you have enough items to go around the complete circumference of the circle, this would be fairly straight forward. You place the items around the circle using
cos()
and sin()
functions and then rotate the container.
However, if you only have a few, you are going to need to reposition them to the start when they go out of view.