MochaUI窗口z-index

时间:2013-10-23 15:40:53

标签: javascript activex mocha

我正在使用MochaUI窗口,例如:

new MUI.Window({
    id: 'PanelId',
    loadMethod: 'html',
    contentURL: 'pages/Panel.html',
    closeAfter: 0,
    type: 'notification',
    addClass: 'notification',
    content: 'Notification Window',
    width: 350,
    height: 40,
    y: 150,
    x: 100,
    padding: { top: 10, right: 12, bottom: 10, left: 12 },
    shadowBlur: 5
});

我的问题是我试图打开一个运行ActiveX渲染视频的控件上方的窗口。 我无法在视频顶部显示窗口。 该窗口高于所有其他控件(其中一个控件包含ActiveX),但MochaUI窗口中位于视频顶部的部分始终被#34;裁剪"。

有什么想法吗?

(黑色区域是视频的一部分!) enter image description here

1 个答案:

答案 0 :(得分:0)

我终于能够解决问题了。 我将我的加载类型设置为iFrame而不是html:

new MUI.Window({
        id: 'MyWindow',
        loadMethod: 'iframe',

现在我有闪烁但这是一个不同的问题。