web-dev-qa-db-ja.com

scrollTo速度/期間の設定

scrollToの動作速度を上げる方法はありますか?

私はspeeddurationで暗闇に刺されましたが、動作しません!

window.scrollTo({
    top: 1000,
    behavior: "smooth"
});

参照:

13
GoldenGonaz

純粋なjavascriptソリューション。以下の例を参照してください。

https://jsfiddle.net/rafarolo/zwkesrxh/3/

縮小版: https://jsfiddle.net/rafarolo/8orw7ak3/3/

scrollTopTo関数の2番目のパラメーターを変更して、速度制御を調整します。

// scroll to top (0) in 4 seconds e some milliseconds
scrollTo(0, 4269);

// Element to move, time in ms to animate
function scrollTo(element, duration) {
    var e = document.documentElement;
    if(e.scrollTop===0){
        var t = e.scrollTop;
        ++e.scrollTop;
        e = t+1===e.scrollTop--?e:document.body;
    }
    scrollToC(e, e.scrollTop, element, duration);
}

// Element to move, element or px from, element or px to, time in ms to animate
function scrollToC(element, from, to, duration) {
    if (duration <= 0) return;
    if(typeof from === "object")from=from.offsetTop;
    if(typeof to === "object")to=to.offsetTop;

    scrollToX(element, from, to, 0, 1/duration, 20, easeOutCuaic);
}

function scrollToX(element, xFrom, xTo, t01, speed, step, motion) {
    if (t01 < 0 || t01 > 1 || speed<= 0) {
        element.scrollTop = xTo;
        return;
    }
    element.scrollTop = xFrom - (xFrom - xTo) * motion(t01);
    t01 += speed * step;

    setTimeout(function() {
        scrollToX(element, xFrom, xTo, t01, speed, step, motion);
    }, step);
}
function easeOutCuaic(t){
    t--;
    return t*t*t+1;
}

縮小版:

// c = element to scroll to or top position in pixels
// e = duration of the scroll in ms, time scrolling
// d = (optative) ease function. Default easeOutCuaic
function scrollTo(c,e,d){d||(d=easeOutCuaic);var a=document.documentElement;
if(0===a.scrollTop){var b=a.scrollTop;++a.scrollTop;a=b+1===a.scrollTop--?a:document.body}
b=a.scrollTop;0>=e||("object"===typeof b&&(b=b.offsetTop),
"object"===typeof c&&(c=c.offsetTop),function(a,b,c,f,d,e,h){
function g(){0>f||1<f||0>=d?a.scrollTop=c:(a.scrollTop=b-(b-c)*h(f),
f+=d*e,setTimeout(g,e))}g()}(a,b,c,0,1/e,20,d))};
function easeOutCuaic(t){t--;return t*t*t+1;}

参照:

2
ℛɑƒæĿ

インターバルタイマーを使用して独自のスクロールを実装したり、次のようにjQueryのアニメーションライブラリを使用したりできます。

https://stackoverflow.com/a/38572744/9510069

0
Jacob Brown