Subscribe

Bringing perspective to CSS

✍️

Adding perspective to our 3D css dice

7 Aug, 2022 Β· 2 min read

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.

3D cube in CSS

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;
}

3D css perspective

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.

CSS perspective origin

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.

See the Pen Creating a 3D dice in CSS by Chris Bongers (@rebelchris) on CodePen.

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

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next πŸ“–

Modifying an SVG path with CSS

10 Dec, 2022 Β· 2 min read

Modifying an SVG path with CSS

Animate an SVG path with CSS

9 Dec, 2022 Β· 2 min read

Animate an SVG path with CSS

Join 2099 devs and subscribe to my newsletter