使用带有jQuery的键盘从锚点到锚点的动画滚动

时间:2012-10-23 07:37:44

标签: jquery scroll anchor

我动态生成一个html页面,我希望能够使用箭头键上下导航,每次按UP或DOWN时滚动到下一个锚点。

这是我的代码(不起作用)

$(document).keydown(function(e){
    if (e.keyCode == 40) {
        console.log('keydown');
        if ( next === undefined ) {
            next = $('.js_anchor').next();
        } else {
            next = next.next();
        } 
        $(document).animate({scrollTop: next}, 2000,'easeInOutCubic');
    }
});

有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:2)

使用变量存储锚列表,然后将键索引存储到当前的列表中,如下所示:

$myAnchors = $('.js_anchor');
currentAnchor = -1;

$(document).keydown(function(e){
    if (e.keyCode == 40) {
        console.log('keydown');
        if ($myAnchors.length < currentAnchor+1) {
            currentAnchor++;
            $(window).animate({scrollTop: $myAnchors.eq(currentAnchor).offset().top}, 2000,'easeInOutCubic');
        }
    }
});

如果用户自己滚动并按向下箭头它可能会向上滚动,这会产生一些不良影响...使用此功能确定要滚动到哪个:

function getAnchorOffset(prevnext){
    //prevnext = 'next' or 'prev' to decide which we want.
    currentPosition = $(window).scrollTop();
    for(k in $myAnchors){
        if($myAnchors[k].offset().top<currentPosition && $myAnchors[k].offset().top>closestOffset){
             closestOffset = $myAnchors[k].offset().top;
             key = k;
        }else if($myAnchors[k].offset().top>currentPosition){
            break;
        }

    }
    if(prevnext=='next'){
        return $myAnchors[key+1].offset().top;
    }else{
        return closestOffset; 
    }
}

并替换

$(window).animate({scrollTop: $myAnchors.eq(currentAnchor).offset().top}, 2000,'easeInOutCubic');

通过

$(window).animate({scrollTop: getAnchorOffset('next')}, 2000,'easeInOutCubic');

请注意,它尚未经过测试,但如果尚未开始工作,应该接近工作。