admin管理员组文章数量:1349191
I'm just trying to update a simple progress bar on time update, so I'm doing this:
var audioFile = thisPlayerBtn.attr('audioFile');
var audioFilePlayer = document.createElement('audio');
audioFilePlayer.setAttribute('src', audioFile);
audioFilePlayer.setAttribute('id', 'theAudioPlayer');
audioFilePlayer.load();
$.get();
audioFilePlayer.addEventListener("load", function() {
audioFilePlayer.play();
}, true);
$('#hiddenAudioElements').append(audioFilePlayer);
audioFilePlayer.play();
audioFilePlayer.bind('timeupdate', updateTime);
var updateTime = function(){
var thisPlayer = $(this);
var widthOfProgressBar = Math.floor( (100 / thisPlayer.duration) * thisPlayer.currentTime);
$('#songIdForPorgessBar').css({
'width':widthOfProgressBar+'%'
});
}
Firebug says that "bind" is not a function, so I swapped it with "addEventListener" and I get no error but the progress bar doe not update.
Not sure what I'm doing wrong or if there's a better way of going about it. Here is my fiddle: / it works, plays the audio, just doesn't update the progress bar and I'm stumped.
I'm just trying to update a simple progress bar on time update, so I'm doing this:
var audioFile = thisPlayerBtn.attr('audioFile');
var audioFilePlayer = document.createElement('audio');
audioFilePlayer.setAttribute('src', audioFile);
audioFilePlayer.setAttribute('id', 'theAudioPlayer');
audioFilePlayer.load();
$.get();
audioFilePlayer.addEventListener("load", function() {
audioFilePlayer.play();
}, true);
$('#hiddenAudioElements').append(audioFilePlayer);
audioFilePlayer.play();
audioFilePlayer.bind('timeupdate', updateTime);
var updateTime = function(){
var thisPlayer = $(this);
var widthOfProgressBar = Math.floor( (100 / thisPlayer.duration) * thisPlayer.currentTime);
$('#songIdForPorgessBar').css({
'width':widthOfProgressBar+'%'
});
}
Firebug says that "bind" is not a function, so I swapped it with "addEventListener" and I get no error but the progress bar doe not update.
Not sure what I'm doing wrong or if there's a better way of going about it. Here is my fiddle: http://jsfiddle/j44Qu/ it works, plays the audio, just doesn't update the progress bar and I'm stumped.
Share Improve this question asked Nov 2, 2013 at 5:56 user1053263user1053263 7422 gold badges16 silver badges33 bronze badges1 Answer
Reset to default 7Your problem is that you're using jQuery objects when you should be using dom nodes and vice versa.
bind
is a jQuery method yet you call it on the audio node
$(audioFilePlayer).bind('timeupdate', updateTime);
duration
and currentTime
are audio node properties but you try to reference them from a jQuery object
var widthOfProgressBar = Math.floor( (100 / this.duration) * this.currentTime);
http://jsfiddle/j44Qu/1/
本文标签: javascriptbind 39timeupdate39 with jquery on html5 audio elementStack Overflow
版权声明:本文标题:javascript - bind 'timeupdate' with jquery on html5 audio element - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743860083a2551572.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论