Changing perspective of HTML5 <video> tag
How to change perspectve of html5video using html5 and css3:
<style>
#masterContainer {
perspective: 600px;
}
#masterContainer .video {
transform: rotateY( 45deg );
}
</style>
<section class="container" id="masterContainer">
<div class="video"></div>
</section>
