开发者

Embed wmv hides dropdown/floating objects in Chrome

开发者 https://www.devze.com 2023-01-22 12:18 出处:网络
I\'ve tried many tricks found on the web including: wmode transparent z-index WindowlessVideo But none of开发者_如何学编程 them seem to work on Chrome. Works fine on IE and FF.

I've tried many tricks found on the web including:

  • wmode transparent
  • z-index
  • WindowlessVideo

But none of开发者_如何学编程 them seem to work on Chrome. Works fine on IE and FF.

This version of code is XHTML compliant:

<!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>


If you just wanted to crop the video, you could put it in a div tag with overflow set to hidden. Something like this:

<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>

If you wanted a more custom border or something for your videos, you might be out of luck when it comes to Chrome.

0

精彩评论

暂无评论...
验证码 换一张
取 消