[Vuejs]-Play audio on android but not on iphone

1👍

You can not automatically play audio on iOS without the user initiating it via an interaction. This is an iOS imposed limitation.

the JavaScript play() and load() methods are also inactive until the user initiates playback, unless the play() or load() method is triggered by user action. In other words, a user-initiated Play button works, but an onLoad="play()" event does not.

👤yoduh

Leave a comment