scrollama.js
Moderrn & lightweight JavaScript library for scrollytelling using IntersectionObserver in favor of scroll events.
Why?
Scrollytelling can be complicated difficult to make performant. The goal of this library is to provide a simple interface for creating scroll-driven interactives. Scrollama is focused on perfomance by using IntersectionObserver to handle element position detection. It offers an opinionated (but popular) scrollytelling pattern to reduce more involved DOM calculations.
Installation
Old school (exposes the scrollama
global):
<script src='scrollama.min.js'></script>
New school:
npm install scrollama
And then import/require it:
import scrollama from 'scrollama'
const scrollama = require('scrollama');
How to use
Basic
You can use this library to simply trigger steps, similar to something like Waypoints. This is useful if you need more control over your interactive, or you don't want to follow the sticky scrollytelling pattern.
You can use any id/class naming conventions you want. The HTML structure should look like:
<div class='step' data-step='a'></div>
<div class='step' data-step='b'></div>
<div class='step' data-step='c'></div>
const scroller = Scrollama()
scroller.setup({
step: '.step',
offset: 0.5,
debug: false,
})
.onStepEnter(handleStepEnter)
.onStepExit(handleStepExit)
Sticky Graphic
To implement the sticky graphic scrollytelling pattern, you need the following three elements (container, graphic, steps). The structure should look like:
<div class='scroll'>
<div class='scroll__graphic'>
</div>
<div class='scroll__text'>
<div class='step' data-step='a'></div>
<div class='step' data-step='b'></div>
<div class='step' data-step='c'></div>
</div>
</div>
const scroller = Scrollama()
scroller.setup({
step: '.scroll__text .step',
container: '.scroll',
graphic: '.scroll__graphic',
offset: 0.5,
debug: false,
})
.onStepEnter(handleStepEnter)
.onStepExit(handleStepExit)
.onContainerEnter(handleContainerEnter)
.onContainerExit(handleContainerExit)
API
scrollama.setup([options])
options:
step
(string): Selector for the step elements that will trigger changes. requiredcontainer
(string): Selector for the element that contains everything for the scroller. optionalgraphic
(string): Selector for the graphic element that will become fixed. optionaloffset
(number, 0 - 1): How far from the top of the viewport to trigger a step. (default: 0.5)debug
(boolean): Whether to show visual debugging tools or not. (default: false)
scrollama.onStepEnter(callback)
Callback that fires when the top or bottom edge of a step element enters the offset threshold.
The argument of the callback is an object:
{ direction: string, element: DOMElement, index: number }
direction
: 'up' or 'down'
element
: The step element that triggered
index
: The index of the step of all steps
scrollama.onStepExit(callback)
Callback that fires when the top or bottom edge of a step element exits the offset threshold.
The argument of the callback is an object:
{ direction: string, element: DOMElement, index: number }
direction
: 'up' or 'down'
element
: The step element that triggered
index
: The index of the step of all steps
scrollama.onContainerEnter(callback)
Callback that fires when the top of container becomes flush with viewport or the graphic becomes fully in view coming from the bottom of the container.
The argument of the callback is an object:
{ direction: string }
direction
: 'up' or 'down'
scrollama.onContainerExit(callback)
Callback that fires when the top of container goes below viewport or the graphic becomes not full in view leaving the bottom of the container.
The argument of the callback is an object:
{ direction: string }
direction
: 'up' or 'down'
scrollama.resize()
Tell scrollama to get latest dimensions the browser/DOM. It is best practice to throttle resize in your code, update the DOM elements, then call this function at the end.
scrollama.enable()
Tell scrollama to resume observing for trigger changes. Only necessary to call if you have previously disabled.
scrollama.disable()
Tell scrollama to stop observing for trigger changes.
Examples
Note: most of these demos use D3 to keep the code concise, but this can be used with any library, or with no library at all.
Tips
- Avoid using
viewport height
(vh) in your CSS because scrolling up and down constantly triggers vh to change, which will also trigger a window resize.
To do
- Incremental progress listener
Alternatives
License
MIT License
Copyright (c) 2017 Russell Goldenberg
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.