使用“j”导航到页面部分和“k”键
我试图找到最简单的代码,无论是独立的还是使用 jQuery,它都是这样做的:当我在键盘上按 j 时,我会被重定向到下面的下一个 div,当我按 < kbd>k,我被送回到上面的div。如果能流畅滚动就加分。
I'm trying to find the simplest code, whether it's standalone or with jQuery, that does this: when I press j on my keyboard, I'm redirected to the next div below and when I press k, I'm sent back to the div above. Extra points if it can scroll smoothly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你会想要使用以下两个插件的组合:
http://plugins.jquery.com /project/hotkeys
和
http://plugins.jquery.com/project/ScrollTo
你可以用这种时尚:
实际滚动的部分可能是:
I think you'll want to use a combination of the following two plugins:
http://plugins.jquery.com/project/hotkeys
and
http://plugins.jquery.com/project/ScrollTo
which you could use in this kind of fashion:
and the actually scrolling part could be:
我会用 jQuery 以如下方式做到这一点:
I would do this with jQuery in a way like this: