只需要
$('#player').jPlayer( "playHead", progress*100 );
就够了
评论不能改动,有没有大佬能说一下为什么
$('#player').jPlayer( "playHead", progress*100 );
就够了
评论不能改动,有没有大佬能说一下为什么
2017-09-15
$('#player').jPlayer( "playHead", progress*100 );
this.progress = progress
this.progress = progress
2017-09-15
辛辛苦苦照着一路做下来到这儿就是在跟不上了,感觉漏听了一节课一样,对于初学者来说跳跃幅度那么大,坑比课程
2017-09-15
暂停时调整进度会继续播放解决方案。暂停时也能调整进度。
progressChangeHandler(progress){
if(this.state.isPlay){
$('#player').jPlayer('play', duration * progress); //play调用了timeupdate,导致state更改,ui更改
}else{
$('#player').jPlayer('play', duration * progress);
$('#player').jPlayer('pause');
}
}
progressChangeHandler(progress){
if(this.state.isPlay){
$('#player').jPlayer('play', duration * progress); //play调用了timeupdate,导致state更改,ui更改
}else{
$('#player').jPlayer('play', duration * progress);
$('#player').jPlayer('pause');
}
}
2017-09-13
最新回答 / qq_颜色不一样的烟火_2
找到了,progress.js里面的changeProgress方法里应该是this.props.onProgressChange && this.props.onProgressChange(progress);
2017-09-12