X-Git-Url: http://105106.c2e0p.group/sound.git/blobdiff_plain/27e1e1aa194c20d055b99f32f7642c66ac112f09..2acf7355303ecf1cb8c61823ee72bc60c8c01284:/sound.html diff --git a/sound.html b/sound.html index 67b4059..d5185e4 100644 --- a/sound.html +++ b/sound.html @@ -41,17 +41,43 @@ audio.addEventListener('timeupdate', eventLogger); audio.addEventListener('volumechange', eventLogger); audio.addEventListener('waiting', eventLogger); + audio.addEventListener('timeupdate', updateTime); + audio.addEventListener('durationchange', eventLogger); + audio.addEventListener('durationchange', updateDuration); + } + + function formatTime(time) { + var seconds = (time % 60).toFixed(0); + var minutes = (time / 60).toFixed(0); + return ("0" + minutes).substr(-2, 2) + ':' + ("0" + seconds).substr(-2, 2); + } + + function updateTime() { + var time = document.getElementById('time'); + time.innerText = formatTime(audio.currentTime); + } + + function updateDuration() { + var duration = document.getElementById('duration'); + duration.innerText = formatTime(audio.duration); }
- +