Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery('#your-button-id').on('click', () => {
- if (typeof window.SB !== 'undefined') {
- window.SB.scrollTo(0, 0, 800, { // 800 is duration in miliseconds
- easing: (pos) => {
- if (pos === 0) return 0;
- if (pos === 1) return 1;
- if ((pos /= 0.5) < 1) return 0.5 * Math.pow(2, 10 * (pos - 1));
- return 0.5 * (-Math.pow(2, -10 * --pos) + 2);
- }
- });
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement