我正试图让fitvids调整我的视频大小,以尽可能填充父区域。这是我的小提琴:
http://jsfiddle.net/LkqTU/9513/
代码:

$(".video-content").fitVids();

html格式:
<div class='liveExample'>

    <div class='video-content'>
        <iframe width="200" height="113" src="http://www.youtube.com/embed/r65FgUYdBOc?rel=0" frameborder="0" allowfullscreen></iframe>

    </div>
</div>

知道为什么没用吗?

最佳答案

Any idea why it's not working?
您只是忘记在Fiddle中包含jQuery(在Frameworks&Extensions下)
http://jsfiddle.net/LkqTU/9531/

关于jquery - 简单使用fitVids无法正常工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16925980/

10-09 16:07