I am trying to find out a way to set a time tag to the marquee tag in html. The whole idea is to display the subtitles of a song in marquee format, and starting the marquee only when the user clicks to start the audio.
I am using the following code to play the audio file,(in html-5)
<audio controls="controls" loop="loop">
<source src="song.ogg" type="audio/ogg" />
<source src="song.mp3" type="audio/mpeg" />
Your browser does not support the audio element.Please use chrome.
</audio>
What I am doing is set this audio file on autoplay, and let the marquee start at the time the page loads(which is the default setting) but this works nice on high speed networks, for low speed networks the problem that arises is that the loading of the audio content gets delayed and hence the marquee text starts running ahead of the audio. which is not cool
Please advice me how can I accomplish a solution to this problem via javascript ?
