我试图通过 javascript 在另一个 iframe 上覆盖一个 iframe。
我想将背景 iframe 保持为 100% 的宽度和高度,但第二个 iframe 我希望它看起来稍微小一些并且在第一个 iframe 的中心。
目前我试图将两个 iframe 设置如下,但这似乎不起作用..
<div id="iframe1" style="width=80%; height=50%;">
<iframe id="gameIFrame" style="width=80%; height=50%;position:absolute; z-index:1000;" seamless="seamless" src="http://www.guguncube.com" />
</div>
<div id="iframe2" style="width=30%; height=30%;" >
<iframe id="gameIFrame2" style="width=30%; height=30%; position:absolute; " seamless="seamless" src="http://www.guguncube.com"/>
</div>
有任何想法吗?