gpt4 book ai didi

javascript - Div 在 iframe 顶部,内部有 Silverlight

转载 作者:行者123 更新时间:2023-11-28 10:13:44 25 4
gpt4 key购买 nike

好的,所以我最近了解到来自 Verimatrix 的 ViewRight 网络播放器是一个所谓的 NPAPI 插件,可以使用涉及“虚拟 iframe”的技术覆盖 HTML 元素。

Div on top of ViewRight-player

HTML on top of NPAPI plugin

现在,据我所知,Silverlight 似乎也是一个 NPAPI 插件(我可能有误)。因此,我尝试使用相同的方法在 iframe 中加载的另一个网站的 Silverlight 网络播放器上显示 DIV。

不幸的是,它不起作用...一旦加载 Silverlight 播放器,它就会位于其他所有内容之上。我知道在播放器中将 windowless 参数设置为 true 会修复它。但是由于播放器不是由我托管的,所以我无法编辑任何对象参数。

这是一个基于“虚拟 iframe”方法的测试场景:http://jsfiddle.net/c7Hsp/

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
body {
background: black;
cursor: auto;
-webkit-user-select: none;
user-select: none;
overflow: hidden;
}
:::-webkit-scrollbar {
display: none;
}
.wrapperDiv {
position: absolute;
bottom: 200px;
left: 200px;
width: 200px;
height: 200px;
margin: 0 auto;
}
.dummyFrame {
position: absolute;
top: 200px;
left: 200px;
width: 200px;
height: 200px;
background-color: red;
}
.contentDiv {
position: absolute;
top: 25px;
left: 25px;
width: 300px;
color: white;
font-family: Arial;
font-size: 18pt;
text-align: center;
background-color: green;
}
#silverFrame {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
border: 0px;
background: transparent;
}
</style>
</head>
<body>
<iframe id="silverFrame" src="http://clubace.dk/silverlight.htm"></iframe>
<div class="wrapperDiv">
<iframe class="dummyFrame" frameborder="0"></iframe>
<div class="contentDiv">Weee!<br>I'm overlaying this<br>NPAPI plugin :D</div>
</div>
</body>
</html>

我希望有人能帮助我完成这项工作:-)

谢谢

最佳答案

对于您删除的问题 PHP:从 HTML 中获取特定标签的属性值 你错过了一个 S

document.getElementsByClassName('classname')

然后你就可以

.
.
$attr = $tag->item(15);
$percent = $tag.style.heigth

http://www.w3schools.com/jsref/prop_style_height.asp

关于javascript - Div 在 iframe 顶部,内部有 Silverlight,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24291059/

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