10

If I were to embed a YouTube video for example

<iframe width="560" src="http://www.youtube.com/embed/25LBTSUEU0A" class="player" frameborder="0" allowfullscreen></iframe>

Using jQuery would I set a height with an aspect ration of 16:9 so if the width is 560 the height should be 315px.
I have this jquery to set a height but I dont know how to apply the 16:9 ratio

$('.player').parent().attr('width', ':9ratio');

or can this be done neatly using css?

web-tiki
  • 99,765
  • 32
  • 217
  • 249
Yusaf Khaliq
  • 3,333
  • 11
  • 42
  • 82
  • possible duplicate of [Get YouTube Video dimensions (width/height)](http://stackoverflow.com/questions/9514635/get-youtube-video-dimensions-width-height) – davidcondrey Oct 05 '14 at 00:15

5 Answers5

24

Aspect ratio is just width:height. So if you wanted to calculate the height based on a known width it is pretty straightforward.

//width=560, wanted height is 315
$('.player').parent().attr('height', 560*9/16);
Julien Rodrigues
  • 908
  • 2
  • 8
  • 18
mrtsherman
  • 39,342
  • 23
  • 87
  • 111
5

I would recommend using css calc instead of jQuery for this:

width: 560px;
height: calc(560px * 9/16);
Mattias H
  • 119
  • 1
  • 3
  • 1
    this is actually a really good solution for now. I asked this in 2011 and i always though why we can't do this via css. brilliant solution now. – Yusaf Khaliq Jan 17 '16 at 16:04
1

Pretty old question but if somebody still seeking for the answer, this one could be a better approach.


    function getRelativeWidth(ratio, crntHght) {
        ratio = ratio.split(":");
        var wdthRto = ratio[0];
        var hghtRto = ratio[1];
        return ((wdthRto*crntHght) / hghtRto); 
    }

    function getRelativeHeight(ratio, crntWdth) {
        ratio = ratio.split(":");
        var wdthRto = ratio[0];
        var hghtRto = ratio[1];
        return ((crntWdth*hghtRto) / wdthRto); 
    }
    var wdth = 1600;
    var hght = 900;
    var getHeight = getRelativeHeight("16:9", wdth); 
    var getWeight = getRelativeWidth("16:9", hght); 

    console.log(getHeight);
    console.log(getWeight);

shekhardtu
  • 4,335
  • 7
  • 27
  • 34
0
$('.player').parent().attr('width', 560*9/16)
Marius
  • 57,995
  • 32
  • 132
  • 151
-1

The best way is to simply use CSS because u can keep
it responsive as the page loads and not have a visible
'jump' in the iframe width and height.

Also, you don't have to set a fixed width (although u can)

like this:

iframe {width: 100%; height: calc(~'100% * 9/16');}
Sagive
  • 1,699
  • 1
  • 24
  • 34