gpt4 book ai didi

jquery - float Youtube iframe 嵌入

转载 作者:行者123 更新时间:2023-12-01 06:06:55 26 4
gpt4 key购买 nike

我见过 jQuery 脚本计算旧样式(对象/嵌入)的 100%/可调整宽度 youtube 嵌入的高度。

有人知道如何使用新的 iframe 嵌入来解决这个问题吗?

<iframe 
title="YouTube video player"
class="youtube-player"
type="text/html"
width="640"
height="390"
src="http://www.youtube.com/embed/-p3atsZRPLc?rel=0"
frameborder="0"
allowFullScreen
></iframe>

最佳答案

最终使用旧样式嵌入和此脚本:

<script type="text/javascript"> 
//<![CDATA[
var $origVideo = $(".youtube, .youtube embed");
var aspectRatio = $origVideo.attr("height") / $origVideo.attr("width");

$(window).resize(function() {
var wrapWidth = $("#video").width();
$origVideo
.width(wrapWidth)
.height(wrapWidth * aspectRatio);
}).trigger("resize");
//]]>
</script>

关于jquery - float Youtube iframe 嵌入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4817109/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com