JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q27169F
  • License ISC

Simply no-dependencies javascript function to smooth scrolling to dom nodes

Package Exports

  • scrollyo

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (scrollyo) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

scrollTo

Simple pure javascript smooth scrolling to element


This script exports two modules, scrollToTop and scrollTo, which can then be imported using the JS import statement currently available in Traceur, Babel, or Rollup.

Install

npm install scrollyo --save

With a "y".

Usage

First import the modules you need:

// Both
import {scrollToTop, scrollTo} from 'scrollyo';
// Just one
import {scrollTo} from 'scrollyo';

You can now use scrollToTop and/or scrollTo:

  • scrollToTop scrolls to the top of the page. Takes one argument for the timeout in miliseconds.

    scrollToTop(700);
  • scrollTo scrolls to any element in the DOM unless the element is already at the scrollTo position. The function takes two arguments: the element and a timeout in miliseconds (both mandatory).

    const myElement = document.querySelector('...');
    scrollTo(myElement, 700);