The other day I started exploring 3D in CSS and began with a dice.
The dice is excellent in 3D. However, it has no perspective, so it's still 2D in 3D.
Let's fix that and bring some perspective to 3D.
If we stop the rotation on the dice and look at it from the front, you can see the overlap, but all sides are equally big.
This is a bit weird, as the back panel should be smaller as it sits more to the back.
CSS perspective
That's precisely where the perspective style can come into play.
Let's apply the following style to the body tag:
body {
perspective: 400px;
}
A crazy difference already, right?
You can play around with the value. The lower you go, the more intense the 3D becomes.
We also get perspective-origin
, which can define from which angle you are looking at an object.
The default value is 50% 50%
, and we can use values we know from position to set it.
body {
perspective-origin: left;
}
This will set the perspective to the left.
As you can see, this becomes a bit weird, and you can make the perspective a bit bigger to get the correct display.
Playing with perspective can give your 3D css that next-level feeling.
Feel free to play around with the adjusted dice.
Thank you for reading, and let's connect!
Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter
Top comments (10)
😱🤯🤯
Pretty bizarre how far CSS support has come these days 🤯
I didn‘t kniw that! Wow, pretty amazing! Thanks for sharing tho‘
Happy to share, it's crazy to see how far CSS has come 🤯
This is amazing. Let me try this.
Excelente muy útil gracias por compartir.
This is brilliant! The fact this was all CSS and no JS! Very good job.
Exactly!
Really blown away by the support that CSS has these days
Interesting. Thank you for the post
Thanks, glad you enjoyed it Kingsley 🙏