blastart / scrolldir

0 dependency JS plugin to leverage scroll direction with CSS ⬆⬇ πŸ”ŒπŸ’‰

Home Page:https://dollarshaveclub.github.io/scrolldir/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scrolldir banner

Leverage Vertical Scroll Direction with CSS 😎


ScrollDir ⬆⬇

ScrollDir, short for Scroll Direction, is a 0 dependency, ~1kb micro Javascript plugin to easily leverage vertical scroll direction in CSS via a data attribute. πŸ’ͺ

ScrollDir is perfect for:

  • showing or hiding sticky elements based on scroll direction πŸ₯
  • only changing its direction attribute when scrolled a significant amount πŸ”₯
  • ignoring small scroll movements that cause unwanted jitters 😎

Usage

ScrollDir will set the data-scrolldir attribute on the <html> element to up or down:

<html data-scrolldir="up">

or

<html data-scrolldir="down">

Now it’s easy to change styles based on the direction the user is scrolling!

[data-scrolldir="down"] .my-fixed-header { display: none; }

In Action πŸŽ₯

Scrolldir gif


Install πŸ“¦

npm

npm install scrolldir --save

bower

bower install scrolldir --save

yarn

yarn add scrolldir

Setup πŸ“€

Easy Mode

Add dist/scrolldir.auto.min.js and you’re done. There is nothing more to do! Scrolldir will just work.

Now go write some styles using [data-scrolldir="down"] and [data-scrolldir="up"].

Custom Mode πŸ› 

Add dist/scrolldir.min.js. You have access to the API options below and must invoke scrollDir.

const scrollDir = new ScrollDir({  
  onChange: function(dir, enabled) {
    console.log('direction: ', dir, 'enabled: ', enabled);
  }
});

To use an attribute besides data-scrolldir:

const scrollDir = new ScrollDir({ attribute: 'new-attribute-name' });

To add the Scrolldir attribute to a different element:

const scrollDir = new ScrollDir({ el: 'your-new-selector' });

To turn Scrolldir off:

const scrollDir = new ScrollDir();

scrollDir.setOptions({ off: true });

To turn provide a different scroll direction on page load (or app start):

const scrollDir = new ScrollDir({ dir: 'up' }); // the default is 'down'

Example 🌴

This is a modular version of pwfisher's scroll-intent. If you'd like to use scrolldir with jQueryβ€”use Scroll Intent. Scrolldir should work easily within any front-end framework so it ditches library dependencies. ~TY!

About

0 dependency JS plugin to leverage scroll direction with CSS ⬆⬇ πŸ”ŒπŸ’‰

https://dollarshaveclub.github.io/scrolldir/

License:MIT License


Languages

Language:JavaScript 77.1%Language:HTML 22.9%