0

I want to use for new website project video player in tilted mode.

For example in 30° angle ( 1/6 radian )

Is it possible to do with use of JS/HTML5 video tag or I do have to use flash video player?

If I do have to use flash, can you recommend any free player with this functionality?

Thanks

Marek Sebera
  • 39,650
  • 37
  • 158
  • 244

1 Answers1

1

You can use CSS transforms to rotate the video container:

video{
   -moz-transform:rotate(30deg);
   -webkit-transform:rotate(30deg);
   -o-transform:rotate(30deg);
   -ms-transform:rotate(30deg);
}
kasrak
  • 470
  • 4
  • 12