0

我喜欢在嵌入式视频上放置一个 div 容器。像这样的东西:

<style>
#container_above_video {
position: absolute;
top: 0px;
left: 0px;
background-color: red; /*that works*/
/*background-color: rgba(255,0,0,0.5); that doesn't work*/
z-index: 99; /*has an effect at all?*/
</style>

  <div id="eineID" style="top: 0px; left: 91.8889px; width: 1182.22px; height: 665px;">
<embed id="vlcplugin" target="http://localhost:8097/mainmedia.ts?wmode=transparent" version="VideoLAN.VLCPlugin.2" pluginspage="http://www.videolan.org" wmode="transparent" type="application/x-vlc-plugin" style="top: 0px; left: 91.8889px; width: 1182.22px; height: 665px;"></embed></div>

<div id="container_above_video">Some Content</div>

问题是:我需要一个元素,没有背景,或透明背景,或背景/ div 不透明 - 它不起作用......

为什么?!

请帮忙=)

4

1 回答 1

1

有一个解决方案:

windowless="true"在嵌入参数中使用。

无窗口:(从 VLC 版本 2.0.6 开始)在无窗口(非加速)表面上绘制视频并允许样式(CSS 覆盖、3D 转换等)。默认值:假

更多信息:https ://wiki.videolan.org/Documentation:WebPlugin/

于 2014-11-11T20:17:33.310 回答