LoginSignup
0
0

More than 5 years have passed since last update.

Chromeでyuga.jsを使用するとscrollがスルスルいかなくなる時の対処法

Posted at

問題

Chromeでyuga.jsのsmoothscrollが効かなくなり、scrollが途中で止まってしまう。
他ブラウザは正常に動作する。

原因

Chrome61から、画面のスクロール位置を取得したりする要素が変更になった。

対処

以下のように画面のスクロール位置を取得したりする要素をブラウザによって切り替える。

var scrollElm = (function () {
  if ('scrollingElement' in document) {
    return document.scrollingElement;
  }
  if (navigator.userAgent.indexOf('WebKit') != -1) {
    return document.body;
  }
  return document.documentElement;
})();

対処例

yuga.js内のscroll関数を以下のように書き換える。

変更前
        //ページ内リンクはするするスクロール
        scroll: function(options) {
            //ドキュメントのスクロールを制御するオブジェクト
            var scroller = (function() {
                var c = $.extend({
                    easing:100,
                    step:30,
                    fps:60,
                    fragment:''
                }, options);
                c.ms = Math.floor(1000/c.fps);
                var timerId;
                var param = {
                    stepCount:0,
                    startY:0,
                    endY:0,
                    lastY:0
                };
                //スクロール中に実行されるfunction
                function move() {
                    if (param.stepCount == c.step) {
                        //スクロール終了時
                        setFragment(param.hrefdata.absolutePath);
                        window.scrollTo(getCurrentX(), param.endY);
                    } else if (param.lastY == getCurrentY()) {
                        //通常スクロール時
                        param.stepCount++;
                        window.scrollTo(getCurrentX(), getEasingY());
                        param.lastY = getEasingY();
                        timerId = setTimeout(move, c.ms); 
                    } else {
                        //キャンセル発生
                        if (getCurrentY()+getViewportHeight() == getDocumentHeight()) {
                            //画面下のためスクロール終了
                            setFragment(param.hrefdata.absolutePath);
                        }
                    }
                }
                function setFragment(path){
                    location.href = path
                }
                function getCurrentY() {
                    return document.body.scrollTop  || document.documentElement.scrollTop;
                }
                function getCurrentX() {
                    return document.body.scrollLeft  || document.documentElement.scrollLeft;
                }
                function getDocumentHeight(){
                    return document.documentElement.scrollHeight || document.body.scrollHeight;
                }
                function getViewportHeight(){
                    return ( !$.browser.opera) ? document.documentElement.clientHeight || document.body.clientHeight || document.body.scrollHeight : window.innerHeight;
                }
                function getEasingY() {
                    return Math.floor(getEasing(param.startY, param.endY, param.stepCount, c.step, c.easing));
                }
                function getEasing(start, end, stepCount, step, easing) {
                    var s = stepCount / step;
                    return (end - start) * (s + easing / (100 * Math.PI) * Math.sin(Math.PI * s)) + start;
                }
                return {
                    set: function(options) {
                        this.stop();
                        if (options.startY == undefined) options.startY = getCurrentY();
                        param = $.extend(param, options);
                        param.lastY = param.startY;
                        timerId = setTimeout(move, c.ms); 
                    },
                    stop: function(){
                        clearTimeout(timerId);
                        param.stepCount = 0;
                    }
                };
            })();
            $('a[href^=#], area[href^=#]').not('a[href=#], area[href=#]').each(function(){
                this.hrefdata = new $.yuga.Uri(this.getAttribute('href'));
            }).click(function(){
                var target = $('#'+this.hrefdata.fragment);
                if (target.length == 0) target = $('a[name='+this.hrefdata.fragment+']');
                if (target.length) {
                    scroller.set({
                        endY: target.offset().top - $('#navi').height(),
                        hrefdata: this.hrefdata
                    });
                    return false;
                }
            });
        },
変更後
        //ページ内リンクはするするスクロール
        scroll: function(options) {
            var scrollElm = (function() {
                if('scrollingElement' in document) {
                    return document.scrollingElement;
                }
                if(navigator.userAgent.indexOf('WebKit') != -1) {
                    return document.body;
                }
                return document.documentElement;
            })();
            //ドキュメントのスクロールを制御するオブジェクト
            var scroller = (function() {
                var c = $.extend({
                    easing:100,
                    step:30,
                    fps:60,
                    fragment:''
                }, options);
                c.ms = Math.floor(1000/c.fps);
                var timerId;
                var param = {
                    stepCount:0,
                    startY:0,
                    endY:0,
                    lastY:0
                };
                //スクロール中に実行されるfunction
                function move() {
                    if (param.stepCount == c.step) {
                        //スクロール終了時
                        setFragment(param.hrefdata.absolutePath);
                        window.scrollTo(getCurrentX(), param.endY);
                    } else if (param.lastY == getCurrentY()) {
                        //通常スクロール時
                        param.stepCount++;
                        window.scrollTo(getCurrentX(), getEasingY());
                        param.lastY = getEasingY();
                        timerId = setTimeout(move, c.ms);
                    } else {
                        //キャンセル発生
                        if (getCurrentY()+getViewportHeight() == getDocumentHeight()) {
                            //画面下のためスクロール終了
                            setFragment(param.hrefdata.absolutePath);
                        }
                    }
                }
                function setFragment(path){
                    location.href = path
                }
                function getCurrentY() {
                    return scrollElm.scrollTop;
                }
                function getCurrentX() {
                    return scrollElm.scrollLeft;
                }
                function getDocumentHeight(){
                    return scrollElm.scrollHeight;
                }
                function getViewportHeight(){
                    return ( !$.browser.opera) ? scrollElm.clientHeight || scrollElm.scrollHeight : window.innerHeight;
                }
                function getEasingY() {
                    return Math.floor(getEasing(param.startY, param.endY, param.stepCount, c.step, c.easing));
                }
                function getEasing(start, end, stepCount, step, easing) {
                    var s = stepCount / step;
                    return (end - start) * (s + easing / (100 * Math.PI) * Math.sin(Math.PI * s)) + start;
                }
                return {
                    set: function(options) {
                        this.stop();
                        if (options.startY == undefined) options.startY = getCurrentY();
                        param = $.extend(param, options);
                        param.lastY = param.startY;
                        timerId = setTimeout(move, c.ms);
                    },
                    stop: function(){
                        clearTimeout(timerId);
                        param.stepCount = 0;
                    }
                };
            })();
            $('a[href^=#], area[href^=#]').not('a[href=#], area[href=#]').each(function(){
                this.hrefdata = new $.yuga.Uri(this.getAttribute('href'));
            }).click(function(){
                var target = $('#'+this.hrefdata.fragment);
                if (target.length == 0) target = $('a[name='+this.hrefdata.fragment+']');
                if (target.length) {
                    scroller.set({
                        endY: target.offset().top - $('#navi').height(),
                        hrefdata: this.hrefdata
                    });
                    return false;
                }
            });
        },

参考

【JS・jQuery】ページ内リンクのスムーススクロールのベスト(2017年9月現在)な実装を考える

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0