嵌入wmv会在Chrome中隐藏下拉/浮动对象

时间:2010-10-27 22:26:19

标签: html css google-chrome embed wmv

我在网上尝试了许多技巧,包括:

  • wmode transparent
  • z索引
  • WindowlessVideo

但它们似乎都不适用于Chrome。适用于IE和FF。

此版本的代码符合XHTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>wmv embed test</title>
<style type="text/css">
#floatingbar { background: thistle; z-index: 9999; position: absolute; width: 500px; height: 60px; border: 1px solid blue; }
#floatingbar2 { background: white; z-index: 9999; position: absolute; width: 500px; height: 60px; border: 1px solid orange; top: 140px; }
</style>
</head>
<body>

<div id="floatingbar"></div>

<object type="application/x-mplayer2" style="width:260px; height:200px;" data="http://nov-exl.com/test/FactFinders.wmv">
<param name="movie" value="http://nov-exl.com/test/FactFinders.wmv" />
</object>

<div id="floatingbar2"></div>

</body>
</html>

1 个答案:

答案 0 :(得分:0)

如果您只想裁剪视频,可以将其放在div标签中,并将溢出设置为隐藏。像这样:

<style> 
div#crop {position:absolute;height:100px;top:60px;overflow:hidden}
object, param {position:absolute;top:-60px}
</style>

<div id=crop><object><param /> </object></div>

如果您想为自己的视频设置更多自定义边框或其他内容,那么Chrome浏览器可能会让您失望。