禁用 flowplayer 上可滚动的箭头键

发布于 2024-09-02 02:35:55 字数 308 浏览 9 评论 0原文

我需要禁用 flowplayer.org 可滚动中的箭头键,我有一个文本输入,由于按下箭头键时滚动条移动,我无法在字母之间移动,我不关心永久禁用滚动条键。

感谢

可滚动链接

链接到论坛以禁用密钥

i need to disable the arrow keys in a flowplayer.org scrollable i have a text input that i cant move between the letters due to the scroller moving when arrow keys pressed, i dont care to disable the scroller keys permanently.

thanks

link to scrollable

link to forum to disable keys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

葮薆情 2024-09-09 02:35:55

您需要将可滚动实例分配给一个变量:

var yourScrollable = $(".yourScrollableClass").eq(1).data("scrollable");

然后禁用键盘导航(在您的情况下,专注于文本输入):

$('.inputClass').focus(function() { yourScrollable.getConf().keyboard=false; });

然后您可以在文本输入模糊时将其设置回 true。

$('.inputClass').blur(function() { yourScrollable.getConf().keyboard=true; });

You need to assign your scrollable instance to a variable:

var yourScrollable = $(".yourScrollableClass").eq(1).data("scrollable");

And then disable the keyboard navigation (in your case, on focus on a text input):

$('.inputClass').focus(function() { yourScrollable.getConf().keyboard=false; });

Then you can set this back to true on blur of your text input.

$('.inputClass').blur(function() { yourScrollable.getConf().keyboard=true; });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文