Reputation: 7317
The following code snippet
<audio controls>
<source src="horse.mp3" type="audio/mpeg">
</audio>
generates the following audio controls:
Question 1: Is there a way to remove the progress bar portion of these audio controls, such that the only thing visible is the play/pause button and the volume knob?
Question 2: Is there a way to totally customize the appearance of the play button using another image?
Upvotes: 1
Views: 430
Reputation: 123
With MediaElement.js http://mediaelementjs.com/#api you can customize your html5 audio control easily. Live demo with the code http://designshack.net/articles/css/custom-html5-audio-element-ui/
Upvotes: 1