在Google地球插件上方获取“高于”内容的问题

时间:2011-08-02 13:16:12

标签: html silverlight silverlight-4.0 z-index

我正在尝试重新排序页面上的元素,以便我的Silverlight显示在GE插件上方而不是它下方。

这是HTML代码:

<form id="form1" runat="server" style="height:100%">
<div id="silverlightControlHost" style="position:absolute;top:0px;left:0px;bottom:0px;right:0px;background-color:transparent;z-index:9999999">
    <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
      <param name="source" value="ClientBin/GoogleEarthApiTest.xap"/>
      <param name="onError" value="onSilverlightError" />
      <param name="background" value="white" />
      <param name="minRuntimeVersion" value="4.0.50826.0" />
      <param name="autoUpgrade" value="true" />
      <param name="windowless" value="true" />
      <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none">
          <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
      </a>
    </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
<div id="map3d" style="position:absolute;left:100px;top:100px;bottom:0px;right:0px;z-index:-1"></div>
</form>

我认为添加z-index样式属性就足够了,但GE仍然会在SL应用程序之上呈现(在最新的Firefox和IE中)。

我怀疑我在这里遗漏了一些明显的东西。它可能是什么?

2 个答案:

答案 0 :(得分:0)

如果您不需要在silverlight控件上方显示任何内容,请将其windowless参数更改为false

答案 1 :(得分:0)

当我想要显示“over”它时,我最终隐藏了Google Earth div。 :/