如何制作带有专辑封面图像的音频播放器作为背景图像,以便所有播放控制按钮位于该图像的顶部。我用过这个
<audio controls = 'controls'>
<source src='' type= 'audio/mp3'>
</audio>
但它不允许我添加图像,我搜索了很多但没有成功。
答案 0 :(得分:2)
答案 1 :(得分:1)
您可以将div
定位为相对位置,根据需要调整大小,并将音频播放器置于div中作为绝对值。
https://jsfiddle.net/os2yd6x3/1/
<div class="audioPlayer">
<audio controls = 'controls'>
<source src='' type= 'audio/mp3'>
</audio>
</div>
.audioPlayer {
width: 500px;
height: 300px;
background-image: url('http://arbordayblog.org/wp-content/uploads/2016/06/tree.jpg');
background-size: cover;
position: relative;
}
.audioPlayer audio{
position: absolute;
bottom: 0;
width: 100%
}
答案 2 :(得分:1)
您可以这样做:
<video controls poster='img/album/png'>
<source src='' type= 'audio/mp3'>
</video>