使用“j”导航到页面部分和“k”键

发布于 2024-12-02 13:12:55 字数 127 浏览 2 评论 0原文

我试图找到最简单的代码,无论是独立的还是使用 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 技术交流群。

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

发布评论

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

评论(2

七分※倦醒 2024-12-09 13:12:55

我想你会想要使用以下两个插件的组合:

http://plugins.jquery.com /project/hotkeys

http://plugins.jquery.com/project/ScrollTo

你可以用这种时尚:

$(document).bind('keydown', 'j', whenyoupressj);
$(document).bind('keydown', 'j', whenyoupressk);

实际滚动的部分可能是:

$.scrollTo( '#someid', 800, {easing:'elasout'} );

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:

$(document).bind('keydown', 'j', whenyoupressj);
$(document).bind('keydown', 'j', whenyoupressk);

and the actually scrolling part could be:

$.scrollTo( '#someid', 800, {easing:'elasout'} );
哀由 2024-12-09 13:12:55

我会用 jQuery 以如下方式做到这一点:

$(document).keydown(function (e) {

    // Handle only [J] and [K]...
    if (e.keyCode < 74 || e.keyCode > 75) {
        return false;
    }

    // Find the "active" container.
    var active = $('div.active').removeClass('active');
    var newActive;

    // Handle [J] event.
    if (e.keyCode == 74) {
        newActive = active.next('div');

        //if (newActive.index() == -1) {
        //    newActive = $('div', container).last();
        //}
    }
    // Handle [K] event.
    else if (e.keyCode == 75) {
        newActive = active.prev('div');

        //if (newActive.index() == -1) {
        //    newActive = $('div', container).first();
        //}
    }

    if (newActive !== undefined) {
        newActive.addClass('active');
        $(document).scrollTop(newActive.position().top);
    }
});

I would do this with jQuery in a way like this:

$(document).keydown(function (e) {

    // Handle only [J] and [K]...
    if (e.keyCode < 74 || e.keyCode > 75) {
        return false;
    }

    // Find the "active" container.
    var active = $('div.active').removeClass('active');
    var newActive;

    // Handle [J] event.
    if (e.keyCode == 74) {
        newActive = active.next('div');

        //if (newActive.index() == -1) {
        //    newActive = $('div', container).last();
        //}
    }
    // Handle [K] event.
    else if (e.keyCode == 75) {
        newActive = active.prev('div');

        //if (newActive.index() == -1) {
        //    newActive = $('div', container).first();
        //}
    }

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