Lightweight Vanilla JS Smooth Scroll animation library.
npm install scrolltosmootha tags you might not need this library. Check out the native CSS scroll behavior and CSS scroll margin top.
npm install scrolltosmooth
html
`
#### Download
Directly download the repository and include the production ready code from the dist folder in your project.
Include the script in your code:
`html
`
Usage
`javascript
import {
scrollToSmooth,
easeOutCubic
} from 'scrolltosmooth';
let smoothScroll = new scrollToSmooth('a', {
targetAttribute: 'href',
duration: 400,
durationRelative: false,
durationMin: false,
durationMax: false,
easing: easeOutCubic,
onScrollStart: (data) => {
// do something
},
onScrollUpdate: (data) => {
// do something
},
onScrollEnd: (data) => {
// do something
},
offset: null
});
smoothScroll.init();
`
API
$3
#### container
Type: string|element
Default: document
Specify a container element that contains the targets of the current initialization.
#### targetAttribute
Type: string
Default: 'href'
The attribute to determine the target element. Must be a valid selector!
You may use other attributes than href like for example data-scrollto so that the browsers
default behaviour for anchor links does not change.
`html
Scroll to Section 1
Target Section
`
#### offset
Type: string|element|number
Default: null
Specify an element or a number to calculate the final position of the scrolling animation with offset to top.
Example: '#fixed-header'
Notice: You can also pass a numeric value for the offset option.
#### topOnEmptyHash
Type: boolean
default: true
If your targetAttribute contains an empty hash (#) on a href attribute force scroll to top.
#### duration
Type: number
Default: 400
Scroll animation duration in milliseconds.
#### durationRelative
Type: boolean|number
Default: false
durationRelative can be used to adjust the scroll animation duration by the amount of pixels to scroll.
If true scrollToSmooth will use the value of duration to calculate the amount of time in milliseconds to scroll the page by 1000px.
You can also use a number, for example 2000 to calculate the duration by 2000px.
Scroll distances that are below that number will take less time than defined in duration, while distances above will take longer to animate.
#### durationMin
Type: number
Default: null
durationMin represents the minimum amount of milliseconds to perform the animation when using a relative duration.
#### durationMax
Type: number
Default: null
just like durationMin, durationMax represents the maximum amount of milliseconds to perform the animation when using a relative duration.
#### easing
Type: string|function
Default: null
ScrollToSmooth comes with 31 predefined easing patterns.
By default scrollToSmooth is bundled with the linear easing type.
Linear easings output progress value is equal to the input progress value
- linear
Ease-In progress value gradually increases in speed
- easeInQuad
- easeInCubic
- easeInQuart
- easeInQuint
- easeInSine
- easeInExpo
- easeInCirc
- easeInElastic
- easeInBack
- easeInBounce
Ease-Out progress value gradually decreases in speed
- easeOutQuad
- easeOutCubic
- easeOutQuart
- easeOutQuint
- easeOutSine
- easeOutExpo
- easeOutCirc
- easeOutElastic
- easeOutBack
- easeOutBounce
Ease-In-Out progress value increases in speed and slows down back afterwards
- easeInOutQuad
- easeInOutCubic
- easeInOutQuart
- easeInOutQuint
- easeInOutSine
- easeInOutExpo
- easeInOutCirc
- easeInOutElastic
- easeInOutBack
- easeInOutBounce
##### How can I import individual easings?
Every easing bundled with ScrollToSmooth can be imported individually by
`javascript
import { easingName } from 'scrolltosmooth';
new scrollToSmooth('a', {
...
easing: easingName,
...
});
`
##### Can I use easing functions from another library?
You can import other easing functions and use it with ScrollToSmooth.
The only requirement is that the method must take only one parameter representing the absolute progress of the animation in the bounds of 0 (beginning of the animation) and 1 (end of animation).
Example:
`javascript
import { cubic } from 'js-easing-library';
new scrollToSmooth('a', {
...
easing: cubic,
...
});
`
You can also write your own easing functions:
Example:
`javascript
new scrollToSmooth('a', {
...
easing: (t) => t * t, // easeInQuad
...
});
`
#### onScrollStart
Type: function
Default: null
Callback function to be executed when the scrolling animation has started.
#### onScrollUpdate
Type: function
Default: null
Callback function to be executed while the scrolling animation runs.
#### onScrollEnd
Type: function
Default: null
Callback function to be executed when the scrolling animation has finished.
$3
After creating a new instance of scrollToSmooth
`javascript
let smoothScroll = new scrollToSmooth(document.querySelector('.scrollToSmooth-link'));
`
You can use the following public methods to interact with it:
init:
Initialize
`javascript
smoothScroll.init();
`
scrollTo:
You can use the scrollTo method to animate the scrolling to a specific element on the page:
`javascript
smoothScroll.scrollTo('.your-selector');
// OR
smoothScroll.scrollTo(document.querySelector('.your-selector'));
`
scrollTo can be also used with a numeric value.
Example:
`javascript
smoothScroll.scrollTo(50);
`
scrollBy
scrollBy can be used just like scrollTo to trigger a scroll animation.
The only difference is you don't need a target element. Instead you can scroll by a fixed amount of pixels that gets added to the current scrollY.
`javascript
smoothScroll.scrollBy(150);
`
cancelScroll:
while the animation is running you can call cancelScroll whenever you want to stop it immediately
`javascript
smoothScroll.cancelScroll();
`
update:
Update the settings after initialization.
`javascript
smoothScroll.update({
duration: 1000,
fixedHeader: '#my-header-element'
});
`
destroy:
Destroy the current instance of scrollToSmooth. You can then reinitialize the instance with the init method.
`javascript
smoothScroll.destroy();
`
$3
onScrollStart:
`javascript
new scrollToSmooth('a', {
...
onScrollStart: (data) => { },
...
});
`
data contains an object with values for startPosition and endPosition
onScrollUpdate:
`javascript
new scrollToSmooth('a', {
...
onScrollUpdate: (data) => { },
...
});
`
data contains an object with values for startPosition, currentPosition and endPosition
onScrollEnd:
`javascript
new scrollToSmooth('a', {
...
onScrollEnd: (data) => { },
...
});
`
data contains an object with values for startPosition and endPosition
$3
TODO: custom events section
Noteworthy features
$3
ScrollToSmooth adds custom elements to the top and bottom of the page. These elements will simulate expanded boundaries of your document while the scroll animation is running.
That means the animation wont stop on the bottom of your page when the easing function would normally exceed the documents height.
$3
If your page has a fixed header scrollToSmooth can use this element and add an offset before each section.
This ensures that the final scroll position does not cover any elements that should normally be visible.
Usage:
`html
`
`javascript
new scrollToSmooth('a', {
...
offset: '#fixed-header',
// or
offset: document.getElementById('fixed-header'),
...
});
`
$3
You don't need real links to animate scrolling using ScrollToSmooth.
For example, if you want to use span tags as animation triggers you could do it like:
`html
`
`javascript
new scrollToSmooth('[data-scrollto]');
`
You can also define custom scroll triggers for specific events.
For example if you want to scroll down the page for 100px when clicking the spacebar:
`javascript
const scrolltosmooth = new scrollToSmooth('a');
document.addEventListener('keyup', event => {
if (event.keyCode === 32) {
scrolltosmooth.scrollBy(100);
}
})
`
$3
ScrollToSmooth automatically handles focus management after scrolling to an element so that the normal keyboard navigation won't get interrupted.
Browser Compatibility
!Chrome | !Firefox | !IE | !Edge | !Opera | !Safari
--- | --- | --- | --- | --- | --- |
15+ β | 7+ β | 10+ β | 12+ β | 15+ β | 6+ β |
$3
Support for older browsers requires a polyfill for requestAnimationFrame()`