Html5 video perspective transform

后端 未结 1 1879
长发绾君心
长发绾君心 2021-01-21 15:20

Would it be possible to set via CSS or jquery video perspective to fit exactly where and how I need it ?

See picture:

I want the video to fit in the re

1条回答
  •  鱼传尺愫
    2021-01-21 15:46

    Yes, it is possible. You will need to familiarize yourself with CSS3 transform and perspective properties.

    .video-wrapper {
      perspective: 1000px;
    }
    video {
      transform: rotateY(-30deg);
    }

    Without going through all of the effort to create a solution, you can use an HTML5 canvas element

    0 讨论(0)
提交回复
热议问题