Skip to content

Instantly share code, notes, and snippets.

@HeyMehedi
Created October 25, 2019 16:21
Show Gist options
  • Select an option

  • Save HeyMehedi/c2f322ff13b23c035f5cbadaf6841d90 to your computer and use it in GitHub Desktop.

Select an option

Save HeyMehedi/c2f322ff13b23c035f5cbadaf6841d90 to your computer and use it in GitHub Desktop.
Onload Audio Play
<iframe style="display: none;" src="HERE put URL of silence mp3"></iframe>
<audio id="myaudio" autoplay="autoplay" loop="loop" controls="controls">
<source src="HERE put URL of your background music" type="audio/mp3" />
</audio>
<script>
var audio = document.getElementById("myaudio");
audio.volume = 0.2;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment