Yusaf Khaliq
Yusaf Khaliq

Reputation: 3393

16:9 aspect ratio with fixed width

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?

Upvotes: 10

Views: 16328

Answers (5)

Sagive
Sagive

Reputation: 1837

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');}

Upvotes: -1

shekhardtu
shekhardtu

Reputation: 5370

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);

Upvotes: 1

mrtsherman
mrtsherman

Reputation: 39892

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);

Upvotes: 24

Mattias H
Mattias H

Reputation: 119

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

width: 560px;
height: calc(560px * 9/16);

Upvotes: 5

Marius
Marius

Reputation: 58979

$('.player').parent().attr('width', 560*9/16)

Upvotes: 0

Related Questions