Play/Pause Button HTML5 Audio

前端 未结 3 1440
一向
一向 2020-12-16 23:59

I\'m trying to get HTML5 Audio to play/pause in one button. How would I possibly go around doing this? So the play button switches to the pause icon which is font awesome \'

3条回答
  •  死守一世寂寞
    2020-12-17 00:35

    Give this a whirl:

    function aud_play_pause() {
      var myAudio = document.getElementById("myTune");
      if (myAudio.paused) {
        myAudio.play();
      } else {
        myAudio.pause();
      }
    }
    
    
    
    

提交回复
热议问题