我有一个播放曲目的代码,您可以在其中使用搜索栏和不透明度的播放栏查看曲目。此代码工作是Mozilla,但不是在IE 8中.IE 8没有响应。如果我删除绝对代码将工作,但具有失真位置。 使用HTML代码
<div class="jp-progress wav">
<img class="waveform" alt="" src="http://static.supajam.com/a/8d/5058-1298536709311_waveform-bg.png">
<div class="jp-seek-bar" >
<div class="jp-play-bar" ></div>
</div>
</div>
以下代码的css是
div.jp-audio div.jp-progress {
position: absolute;
top:32px;
height:69px;
}
div.jp-seek-bar {
position: absolute;
z-index: '1000';
top: 0;
width:0px;
height:81px;
cursor: pointer;
}
div.jp-play-bar {
width:0px;
height:51px;
border-right: 2px solid #ef6920;
background-color: #ef6920;
opacity: 0.3;
filter: alpha(opacity=30);
}
如果有任何帮助,我会感激他们。
答案 0 :(得分:2)
可以尝试,
<meta http-equiv="X-UA-Compatible" content="IE=9" />
不理想但是,支持旧浏览器确实耗费时间。