使用 JS 在 Firefox 中禁用 HTML5 视频的键盘事件
我正在使用 javascript 创建 HTML5 视频的键盘快捷键。它适用于 Chrome 和 safari,但在 Firefox 中不太适用,因为它具有本机键盘控件。例如,我使用前/后箭头键使用用户定义的跳过步骤在视频中滚动; FF 已经具有相同的功能,但具有预定义的跳步。
非常感谢。
I'm creating keyboard shortcuts for HTML5 videos using javascript. It works in Chrome and safari, but it doesn't quite work in Firefox because it has native keyboard controls. For example, I'm using the front/back arrow keys to scroll within the video using a user-defined skip-step; FF already has the same function, but with a predefined skip-step.
Much thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用音频标签执行此操作对我有用,但我不确定它是否适用于全屏视频播放。
请务必将键盘控件附加到主体或窗口元素。
这可以通过将焦点保持在元素上来实现,这样它就可以不接收键盘事件
Doing this worked for me using the audio tag, I'm not sure if it will work with full-screen video playback though
Be sure to attach your keyboard controls to the body or window element
This works by keeping focus off the element so it will not receive keyboard events
可能的
event.preventDefault
http://api.jquery.com/event.preventDefault/
Possible
event.preventDefault
http://api.jquery.com/event.preventDefault/