Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scroll To #4

Open
mag1ster opened this issue Nov 5, 2015 · 0 comments
Open

Scroll To #4

mag1ster opened this issue Nov 5, 2015 · 0 comments
Labels

Comments

@mag1ster
Copy link
Collaborator

mag1ster commented Nov 5, 2015

    /*
     * Cross-Browser To Animate in the View to an Element
     * @param object element : DOM Element
     * @param int to : The position to scroll to
     * @param int duration : The animation Time
     */
    scrollTo : function(element, to, duration) {
        if (duration <= 0) return;
        var difference = to - element.scrollTop;
        var perTick = difference / duration * 10;

        setTimeout(function() {
            element.scrollTop = element.scrollTop + perTick;
            if (element.scrollTop === to) return;
            scrollTo(element, to, duration - 10);
        }, 10);
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant