使用 JS 在 Firefox 中禁用 HTML5 视频的键盘事件

发布于 2024-11-15 09:12:26 字数 160 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

看海 2024-11-22 09:12:26

使用音频标签执行此操作对我有用,但我不确定它是否适用于全屏视频播放。

mediaElement.addEventListener('focus',function(){this.blur();},false);

请务必将键盘控件附加到主体或窗口元素。

这可以通过将焦点保持在元素上来实现,这样它就可以不接收键盘事件

Doing this worked for me using the audio tag, I'm not sure if it will work with full-screen video playback though

mediaElement.addEventListener('focus',function(){this.blur();},false);

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文