如何调用视频端的函数? (HTML5 和 mediaelementjs)
i am using mediaelementjs for playing video on my website but i need to call some
function at the END/pause of video.So please tell me how an i do this?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要为
ending
和pause
事件创建一个新的EventListener
。示例:
更新:此方法应应用于创建元素的成功处理程序,如 MediaElementJS.com
You need to create a new
EventListener
for theended
andpause
events.Example:
Update: This method should be applied on the success handler of creating the element, as is shown in the example on the bottom of the page at MediaElementJS.com
也许这对某人有用......
May be it will be useful for someone...