English 中文(简体)
传真:与j Query的探测位置
原标题:HTML Audio - Detecting position with jQuery

在利用“超声望”5号音频标签举行活动时是否有任何进展,或利用Dom/jQuery在游击中或最后发射事件的行动?

This answer links to currentTime but there are no examples, Pseudo code below.

<!DOCTYPE html>
<html>
<body>

<audio controls="controls">
  <source src="file.ogg" type="audio/ogg" />
  <source src="file.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>

<script src="jquery.js"></script>
<script>
$(document).ready(function () {
    $("audio").addEventListener("end", function () {
        alert("song has ended");
    });
    $("audio").addEventListener( 20.2 , function () {
        alert("your currently at 20.2 seconds in the track");
    });
});
</script>

</body>
</html>
最佳回答

你可以尝试:

在你需要的地方,根据目前的时间和显示的警惕,确定音频的时间长度并发出警报。

audio.addEventListener("timeupdate", function(){    
var duration = document.getElementById( duration );
var s = parseInt(audio.currentTime % 60);    var m = parseInt((audio.currentTime / 60) % 60);
duration.innerHTML = m +  .  + s +  sec ; 
}, false);
问题回答

页: 1 活动:

$("audio").on("ended", function() { 
     // do stuff
});




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签