Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save claushingebjerg/f14faa3514778c2b35715189e13bdcd9 to your computer and use it in GitHub Desktop.

Select an option

Save claushingebjerg/f14faa3514778c2b35715189e13bdcd9 to your computer and use it in GitHub Desktop.
3d canvac perspective transform
.video-wrapper {
perspective: 1000px;
}
video {
transform: rotateY(-30deg);
}
<div class="video-wrapper">
<video width="400" controls>
<source src="http://www.w3schools.com/HTML/mov_bbb.mp4" type="video/mp4">
<source src="http://www.w3schools.com/HTML/mov_bbb.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment