+ 3
How to create customised an audio player in html.
I want to design my own customised audio player for my website please help me.
5 ответов
+ 6
If you want a custom player it is best to build the interface with HTML + CSS and make it functional through JS (using Web Audio API).
A quick search on Google gives you a lot of results about what you want to know. I used this tutorial for a project when I was in college, and it seems really complete:
https://webdesign.tutsplus.com/en/tutorials/create-a-customized-html5-audio-player--webdesign-7081
+ 5
<audio controls>
<source src="audio.mp3" type="audio/mp3">
</audio>
+ 1
it takes surprisingly little code to do.
0
this is code create general audio player I want customised.