stroll alternatives and similar libraries
Based on the "Scroll" category.
Alternatively, view stroll.js alternatives based on common mentions on social networks and blogs.
-
fullPage
fullPage plugin by Alvaro Trigo. Create full screen pages fast and simple -
skrollr
Stand-alone parallax scrolling library for mobile (Android + iOS) and desktop. No jQuery. -
parallax
Parallax Engine that reacts to the orientation of a smart device -
iscroll
iScroll is a high performance, small footprint, dependency free, multi-platform javascript scroller. -
ScrollMagic
The javascript library for magical scroll interactions. -
onepage-scroll
Create an Apple-like one page scroller website (iPhone 5S website) with One Page Scroll plugin -
headroom
Give your pages some headroom. Hide your header until you need it -
vue-virtual-scroller
โก๏ธ Blazing fast scrolling for any amount of data -
Clusterize.js
Tiny vanilla JS plugin to display large data sets easily -
locomotive-scroll
๐ค Detection of elements in viewport & smooth scrolling with parallax. -
elevator.js
Finally, a "back to top" button that behaves like a real elevator. -
scrollMonitor
A simple and fast API to monitor elements as you scroll -
simpleParallax
Simple and tiny JavaScript library that adds parallax animations on any images -
angular-infinite-list
A short and powerful infinite scroll list library for angular, with zero dependencies
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of stroll or a related project?
Popular Comparisons
README
stroll.js โ because it scrolls, and trolls.
A collection of CSS list scroll effects. Works in browsers with support for CSS 3D transforms including a special touch-enabled mode for iOS & Android 4.x.
Curious about how this looks in action? Check out the demo page.
Usage
The style of scroll effect is determined via the class that is set on the list. Once the class is set, stroll.js needs to be told to monitor that list via the bind method:
// Bind via selectors
stroll.bind( '#main ul' );
// Bind via element reference
stroll.bind( document.getElementById( 'some-list' ) );
// Bind via array of elements / jQuery object
stroll.bind( $( '#main .some-list' ) );
You can provide an additional parameter with more options:
// Makes stroll.js monitor changes to the DOM (like adding or resizing items).
// This is taxing on performance, so use scarcely. Defaults to false.
stroll.bind( '#main ul', { live: true } );
To disable the effect on an already-bound list, you can use stroll.unbind()
:
// Same target options as stroll.bind
stroll.unbind( selector/element/array );
History
1.2 (master/beta)
- Mobile support (iOS/Android 4+)
- New effects
1.1
- Optimizations
- New API
- New effects
1.0
- Initial release
Contributors
- Paul Irish - Perf improvements
- Felix Gnass - Perf improvements
- Kilian Ciuffolo - Fly & Fly Reverse effects
- Dave Arel - Fade effect
- Erick Daniszewski - Twirl Effect
License
MIT licensed
Copyright (C) 2017 Hakim El Hattab, http://hakim.se
*Note that all licence references and agreements mentioned in the stroll README section above
are relevant to that project's source code only.