gpt4 book ai didi

html - div over iframe 实时视频录制

转载 作者:行者123 更新时间:2023-11-28 17:31:06 25 4
gpt4 key购买 nike

这是我的 HTML。我正在尝试在录像机 iframe 上覆盖一个红色的小 div

<div style="overflow: hidden; 
margin: 15px auto;
max-width: 480px;
height: 350px;
float: right;
top: -316px;
position: relative;
left: -50px;
/* margin-right: 100px; */
vertical-align: top;
display: inline-block;
border: solid 2px black;
background: none;">

<iframe style="position: relative;
margin-left: -185px;
height: 1000px;
margin-top: -230px;
width: 850px;" scrolling="no" src="http://www.red5-recorder.com/demo.php">
</iframe>

<div id="red" style="border: 2px red solid;
z-index: 999;
position: absolute;
width: 290px;
height: 180px;
float: right;
margin-right: 160px;
margin-top: 100px;"></div>

</div>

谁能帮我解决这个问题?

最佳答案

您需要一个包装器来设置绝对定位元素的原点:

<div style="position:relative">
<iframe scrolling="no" src="http://www.red5-recorder.com/demo.php" style=" position:relative; margin-left: -185px; height:1000px; margin-top: -230px; width: 850px;">
</iframe>
<div id="red" style="border: 2px red solid; z-index:999; position:absolute;width:290px; height:180px;top:0;left:0"></div>
</div>

此外,您不要将 float: 与绝对定位的元素一起使用。您还需要指定位置 top:bottom:left:right:

关于html - div over iframe 实时视频录制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26077580/

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