Autoplay an audio with HTML5 embed tag while the player is invisible

前端 未结 9 2418
时光说笑
时光说笑 2021-02-08 14:07

I want to autoplay a MP3 audio file and I don\'t want the player to be visible.

9条回答
  •  孤独总比滥情好
    2021-02-08 14:43

    And the css:

    #music {
      display:none;
    }
    

    Like suggested above, you probably should have the controls available in some form. Maybe use a toggle link/checkbox that slides the controls in via jquery.

    Source: HTML5 Audio Autoplay

提交回复
热议问题