Package Exports
- scroll-smooth
- scroll-smooth/dist/index.js
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 (scroll-smooth) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
scroll-smooth
Scroll with smooth gestures
API
/**
* Simple
*/
scrollSmooth.to(elem|position)
// like
scrollSmooth.to(document.querySelector('.myElem'))
// or
scrollSmooth.to(700)
/**
* With Options
*/
scrollSmooth.to(elem|position, {
duration,
context,
offset,
ease,
callback,
})
// like
scrollSmooth.to(document.querySelector('.myElem'), {
duration: 1500
offset: 100,
callback: elem => console.log(`Yup! Hi ${elem}!`),
})
// or
scrollSmooth.to(document.querySelector('.another'), {
context: document.querySelector('.parent')
callback: elem => console.log(`Yup! ${elem} inside a context different than window!`),
})