【发布时间】:2011-08-24 22:50:24
【问题描述】:
我有一个flowplayer,下面有几张图片。当您单击这些图片时,将使用这些图片的放大版本创建 dialog。问题是flowplayer 将始终位于dialog 之上。
我尝试将dialog 的z-index 设置为高,将flowplayer 设置为低,但不起作用。
flowplayer 中是否有一种方法可以降低其z-index 或允许将我的dialog 放在它上面?
编辑流程播放器如下:
//Uses flowplayer to create player
$f('#rightVideoContent', "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
//Creates a single clip for the flow player
clip: {
url: videoLocation,
autoPlay: true,
autoBuffering: true
},
plugins: {
controls: null
},
onLoad: function () {
//Do nothing here
}
});
这里是div
<div id = "rightVideoContent" class = "VideoDiv"></div>
我也使用flowplayer-3.2.6.js
【问题讨论】:
标签: css video z-index flowplayer jquery-dialog