Macbook 遥控器的 jQuery keydown 响应是什么?
我正在尝试使用(很棒的)Deck.js 幻灯片,使用小白MacBook 上的远程控制。
您可以使用箭头键前进幻灯片,也可以覆盖此行为以指定您自己的键来前进幻灯片。
$.deck('.slide', {
keys: {
next: // numeric keycode for your remote's next button,
previous: // numeric keycode for previous button
}
});
如何确定 Mac 遥控器为下一个/上一个按钮发送的按键代码(以及它是否发送了一个)?
我尝试在 http://api.jquery.com/keydown 测试遥控器,但似乎没有达到任何效果。
谢谢
I'm trying to use the (awesome) Deck.js slideware using the little white remote control on a MacBook.
You can advance the slide using the arrow keys, or you can override this behaviour to specify your own keys to advance the slides.
$.deck('.slide', {
keys: {
next: // numeric keycode for your remote's next button,
previous: // numeric keycode for previous button
}
});
How can I determine the keydown code which the Mac remote is sending for the next/previous buttons (and is it even sending one)?
I tried testing the remote at http://api.jquery.com/keydown but it doesn't seem to have any effect.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple Remote 遥控器不会生成任何您可以检测到的键码值。
您需要使用 Remote Buddy 或 沙发控制 将遥控器上的按钮映射到按键。
The Apple Remote doesn't produce any keycode values which you can detect.
You need to use an application like Remote Buddy or Sofa Control to map the buttons on the remote to keypresses.