I am looking to recreate such an effect using CSS 3D Transforms: 
How do I achieve this? That's what i still have
body { perspective: 400px; transition: perspective 1s; } .grid { display: flex; justify-content: center; align-items: center; background-image: url("http://i.imgur.com/3ACizko.jpg"); background-size: cover; height: 400px; width: 400px; transform: rotateX(60deg); margin: 0 auto; transition: transform 1s; perspective: 400px; } .grid p { transition: transform 1s; transform: rotateX(-60deg); }
<div class="grid"> <p>Hello</p> </div>
I thought that if I rotated the background surface 60 degrees and rotated the text 60 degrees, it would cancel the effect, but apparently not?
Anyway, thanks in advance.
html css css3
hexagonest
source share