如果我要嵌入YouTube视频,例如
<iframe width="560" src="http://www.youtube.com/embed/25LBTSUEU0A" class="player" frameborder="0" allowfullscreen></iframe>
使用jQuery我会设置一个高度为16:9的高度,所以如果宽度为560,则高度应为315px.
我有这个jquery设置高度,但我不知道如何应用16:9的比例
$('.player').parent().attr('width',':9ratio');
或者这可以用css整齐地完成吗?
解决方法
宽高比只是宽度:高度.因此,如果您想根据已知宽度计算高度,则非常简单.
//width=560,wanted height is 315 $('.player').parent().attr('height',560*9/16);