我目前正在寻找一种JavaScript(例如,jQuery lib)解决方案,以将滚动的位置调整为特定的CSS类。目的是将滚动条重新放置在最近的容器上。

作为此网站:http://www.takumitaniguchi.com/tokyoblue/

感谢JUJU

最佳答案

如果您使用JQuery,则如果我正确理解您的问题,则相对容易实现。
这里大概是我会怎么做的:

function scrollTo(a){
    //Get current scroll position
    var current = (document.all ? document.scrollTop : window.pageYOffset);
    //Define variables for data collection
    var target = undefined;
    var targetpos = undefined;
    var dif = 0;
    //check each selected element to see witch is closest
    $(a).each(function(){
        //Save the position of the element to avoid repeated property lookup
        var t = $(this).position().top;
        //check if there is an element to check against
        if (target != undefined){
            //save the difference between the current element's position and the current scroll position to avoid repeated calculations
            var tdif = Math.abs(current - t);
            //check if its closer than the selected element
            if(tdif < dif){
                //set the current element to be selected
                target = this;
                targetpos = t;
                dif = tdif;
            }
        } else {
            //set the current element to be selected
            target = this;
            targetpos = t;
            dif = Math.abs(current - t);
        }
    });
    //check if an element has been selected
    if (target != undefined){
        //animate scroll to the elements position
        $('html,body').animate({scrollTop: targetpos}, 2000);
    }
}


这可能不是最好的方法,但是应该可以。只需调用该函数并传递JQuery选择作为第一个参数即可。

关于javascript - 将滚动位置调整到最近的容器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11380594/

10-10 16:23