从动画滚动锚锚使用键盘使用jQuery(Animated scrolling from anchor

2019-10-17 07:44发布

我动态生成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');
    }
});

有任何想法吗 ? 谢谢 !

Answer 1:

使用一个变量来存储锚列表,然后将关键指标,以当前的像这样:

$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');

请大家注意,它尚未经过测试,但应该是接近的工作,如果没有工作。



文章来源: Animated scrolling from anchor to anchor using the keyboard with jQuery