Created
October 25, 2019 16:21
-
-
Save HeyMehedi/c2f322ff13b23c035f5cbadaf6841d90 to your computer and use it in GitHub Desktop.
Onload Audio Play
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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