0

I tried to transform an image that it looks like this image from netflix: background-image

transform: rotateY(-30deg) rotateX(30deg);
perspective: 800px;
transform-origin: 50% 0;

But there is something missing ...

1 Answers1

-1

I think this is approximately what you're looking for, rotate3d() css function :

transform: rotate3d(1, 1, 1, 35deg);

Félix
  • 388
  • 1
  • 9