HTML5 audio not playing multiple times in Android 4.0.4 device Native Browser

后端 未结 3 993
盖世英雄少女心
盖世英雄少女心 2021-01-30 18:02

I am currently working on an HTML5 project.

There is an issue on playing same audio file multiple times in the same page in Andr

3条回答
  •  日久生厌
    2021-01-30 18:57

    If the above solution doesn't work for you, try this one.

    audio_element.addEventListener('timeupdate', function() {
     if (audio_element.currentTime >= ( audio_element.duration - 0.3 ) ) {
      audio_element.currentTime = 0;
      audio_element.pause();
     }
    }, false);  
    

    Note:We are setting the seekbar to starting position just before the audio end.

提交回复
热议问题