Bill Software Engineer
Bill Software Engineer

Reputation: 7782

How do I change the Audio tag in HTML5 to add custom controls?

So in HTML5 Audio Tag, by adding the "control" attribute, you get some pre-defined controls. How do I add and remove from this?

More specifically, I would like to remove the current seek time. And add a play speed button.

Is this possible?

Upvotes: 0

Views: 113

Answers (1)

Quentin
Quentin

Reputation: 943108

You either have native controls or you do not.

If you want to have some controls but not all the native controls, then you must implement them yourself using the JavaScript APIs.

Upvotes: 1

Related Questions