Can I shoot with a portrait screen?

I use the chrome API and the default media player. Can I use some options to display media on a portrait screen?

+8
chromecast google-cast
source share
3 answers

Or this is in the browser window:

javascript:document.body.style.setProperty("-webkit-transform", "rotate(90deg)", null); 
+2
source share

The receiver by default supports aspect ratio; if you have an image whose height is greater than its width, it will be shown as such. Are you experiencing something else?

+1
source share

you can do something like this:

 body.portrait { -webkit-transform: rotate(90deg); } 

and then add the portrait class to <body> via javascript with a cast message

+1
source share

All Articles