heroheman
3/19/2014 - 9:59 AM

JS: 60fps Scrolling

JS: 60fps Scrolling

(function($) {
    'use strict';
    $(document).ready(function(){

        // 60fps scrolling
        // see: http://www.thecssninja.com/javascript/pointer-events-60fps
        var body = document.body,
            timer;

        window.addEventListener('scroll', function() {
            clearTimeout(timer);
            if(!body.classList.contains('disable-hover')) {
                body.classList.add('disable-hover');
            }

            timer = setTimeout(function(){
                body.classList.remove('disable-hover');
            },500);
        }, false);
    });



    navToggle.init();
    vichyAccordion.init();
})(jQuery);