0
How can we add audio behind the image??
I want to run audio behind the image and also no visitor can see it.
2 Answers
+ 2
<audio id="music" src="audio.mp3">
In js
Window.onclick = ()=>{
document.getElementById("music").play() ;
}
In this way as the client click on window music started if loaded.
0
Thank you