我在网站上嵌入来自Google云端硬盘的视频,这些视频在Chrome& Firefox浏览器。在IE 11和Edge中,它是不行的。我假设这是浏览器中的隐私设置,虽然我不确定哪个。此外,如果它是隐私设置,这显然不会起作用,因为我无法进入每个用户的设置!解决方案或解决方案?
这是我正在使用的iframe代码......
<style>
.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border:none;
}
</style>
<div class="embed-container">
<iframe src="https://drive.google.com/file/d/0B8az0_GAjTu8WWZ4Q2RxX1RoZWc/preview"></iframe>
</div>
答案 0 :(得分:0)
检查IE中的兼容性视图设置。当兼容模式关闭但在兼容模式打开时,它在IE中适用于我,它不起作用。如果这是问题所在,您可以继续关闭兼容模式,也可以将以下代码段放在HTML的head标记中,以覆盖用户的兼容性视图设置。
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>