Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio player with album cover as background image

How can I make an audio player with album cover image as the background image such that all playing control buttons be on top of that image. I have used this

<audio controls = 'controls'>
    <source src='' type= 'audio/mp3'>
</audio>

but it does not allow me to add an image, I have googled a lot with no success.

like image 345
Roman Avatar asked Oct 18 '25 16:10

Roman


1 Answers

You can do this:

<video controls poster='img/album/png'>
    <source src='' type= 'audio/mp3'>
</video>
like image 160
Lixy Avatar answered Oct 21 '25 06:10

Lixy