Download
Demo
- Overview
- Documents
User Rating: 0/5 ( 0 votes)
Your Rating:
Locomotive Scroll - Detection of elements in viewport & smooth scrolling with parallax effects.
Source: github.com
1. INCLUDE JS AND CSS FILES
<script src="locomotive-scroll.min.js"></script>
2. HTML
<h1 data-scroll>Hey</h1> <p data-scroll>Hey</p>
3. JAVASCRIPT
<script> (function () { var scroll = new LocomotiveScroll(); })(); </script>
4. Instance options
Option | Type | Default | Description |
---|---|---|---|
el | object | document | Scroll container element. |
name | string | 'scroll' | Data attribute prefix (data-scroll-xxxx). |
offset | array(2) | [0,0] |
Global in-view trigger offset : [bottom,top] Use a string with % to use a percentage of the viewport height. Use a numeric value for absolute pixels unit. E.g. ["30%",0], [100,0], ["30%", 100] |
repeat | boolean | false | Repeat in-view detection. |
smooth | boolean | false | Smooth scrolling. |
initPosition | object | { x: 0, y: 0 } | An object defining the initial scroll coordinates on a smooth instance. For example: { x: 0, y: 1000 } |
direction | string | vertical | Scroll direction: vertical or horizontal |
lerp | number | 0.1 |
Linear interpolation (lerp) intensity. Float between 0 and 1. This defines the "smoothness" intensity. The closer to 0, the smoother. |
getDirection | boolean | false | Add direction to scroll event. |
getSpeed | boolean | false | Add speed to scroll event. |
class | string | is-inview | Element in-view class. |
initClass | string | has-scroll-init | Initialize class. |
scrollingClass | string | has-scroll-scrolling | Is scrolling class. |
draggingClass | string | has-scroll-dragging | Is dragging class. |
smoothClass | string | has-scroll-smooth | Has smooth scrolling class. |
scrollbarContainer | object | false | Specifies the container element for the scrollbar to be appended in. If false, scrollbar will be appended to the body. |
scrollbarClass | string | c-scrollbar | Scrollbar element class. |
multiplier | number | 1 | Factor applied to the scroll delta, allowing to boost/reduce scrolling speed (regardless of the platform). |
firefoxMultiplier | number | 50 | Boost scrolling speed of Firefox on Windows. |
touchMultiplier | number | 2 | Multiply touch action to scroll faster than finger movement. |
scrollFromAnywhere | boolean | false | By default locomotive-scroll listens for scroll events only on the scroll container (el option). With this option set to true, it listens on the whole document instead. |
gestureDirection | string | vertical |
Defines which gesture direction(s) scrolls in your instance. You can use :
|
tablet & smartphone | object |
Object allowing to override some options for a particular context. You can specify:
|
|
reloadOnContextChange | boolean | false | Allows to reload the page when switching between desktop, tablet and smartphone contexts. It can be useful if your page changes a lot between contexts and you want to reset everything. |
resetNativeScroll | boolean | true | Sets history.scrollRestoration = 'manual' and calls window.scrollTo(0, 0) on locomotive-scroll init in Native Class. Useful if you use transitions with native scrolling, otherwise we advise to set it to false if you don't want to break History API's scroll restoration feature. |
5. Element attributes
Attribute | Values | Description |
---|---|---|
data-scroll | Detect if in-view. | |
data-scroll-id | string | (Optional) Useful if you want to scope your element and get the progress of your element in the viewport for example. |
data-scroll-container | Defines the scroll container. Required for basic styling. | |
data-scroll-section | Defines a scrollable section. Splitting your page into sections may improve performance. | |
data-scroll-class | string | Element in-view class. |
data-scroll-offset | string |
Element in-view trigger offset : bottom,top First value is bottom offset, second (optional) is top offset. Percent is relative to viewport height, otherwise it's absolute pixels. E.g. "10", "100,50%", "25%, 15%" |
data-scroll-repeat | boolean | Element in-view detection repeat. |
data-scroll-call | string | Element in-view trigger call event. |
data-scroll-position | string |
top, bottom, left or right Window position of in-view trigger. |
data-scroll-speed | number | Element parallax speed. A negative value will reverse the direction. |
data-scroll-delay | number | Element's parallax lerp delay. |
data-scroll-direction | string | Element's parallax direction. vertical or horizontal |
data-scroll-sticky | Sticky element. Starts and stops at data-scroll-target position. | |
data-scroll-target | string | Target element's in-view position. |
6. Instance methods
Method | Description | Arguments |
---|---|---|
init() | Reinitializes the scroll. | |
on(eventName, function) |
Listen instance events |
|
update() | Updates all element positions. | |
destroy() | Destroys the scroll events. | |
start() | Restarts the scroll events. | |
stop() | Stops the scroll events. | |
scrollTo(target, options) | Scroll to a target. |
target: Defines where you want to scroll. Available values types are :
options (optional, object) : Settings object. Available values are:
|
7. Instance events
Event | Arguments | Description |
---|---|---|
scroll | obj | Returns scroll instance (position, limit, speed, direction and current in-view elements). |
call | func | Trigger if in-view. Returns your string or array if contains ,. |