jPlayer 仅播放声音的一部分
我找不到这个问题的答案。我正在尝试这个:
$("#klikk").click(function() {
$("#jquery_jplayer_1").jPlayer("play", 2).delay(2000).jPlayer("pause", 0);
});
但不起作用。 发生了什么事:只是不要停止声音。没有延迟,它会立即停止。 所以我需要的是:如果我点击链接,播放该部分 2 到 4 秒。
感谢您的帮助!
I couldn't find an answer to this question. I'm trying this:
$("#klikk").click(function() {
$("#jquery_jplayer_1").jPlayer("play", 2).delay(2000).jPlayer("pause", 0);
});
But not working.
Whats happening: simply don't stop the sound. W/O the delay it's stopping immidiately.
So what I need: if I click on the link, play the section from 2 to 4 seconds.
Thansk for help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
改编自这篇帖子。
祝你好运!
Try this:
Adapted from this post.
Good luck!