npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sticky-scroller

v0.4.0

Published

Scroll your very long sticky positioned sidebar

Downloads

784

Readme

Sticky Scroller

Scroll your very long sticky positioned sidebar.

Screen recording

Why do we need JavaScript?

position: sticky is a very useful and interesting CSS3 feature. When scrolling page, navbar/header/sidebar can magically switch between static and fixed position. Usually, height of sticky element is smaller than viewport height. It means you do not need to scroll the content of sticky element.

However, when you have a sidebar with a long list and it is not able to show all content in viewport, position: sticky cannot help with this. When you scroll the page, sidebar content doesn't scroll.

You may come up with a quick solution:

sidebar {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

Then you can scroll sidebar content, right?

Screenshot

Here are some disadvantages of above solution:

  1. You have two long scroll bars on the page and it is annoying.
  2. Scroll in a sticky/fixed element cause issues on all browsers, especially mobile browsers. You unexpectedly scroll the whole page instead of floating content sometimes.
  3. Users have to move mouse from one area to another area to scroll content. It is not a good user experience.
  4. Some users prefer to use keyboard to scroll page. They cannot scroll floating content with keyboard.

So how JavaScript can make a difference?

JavaScript syncronize scrolling of page and sticky sidebar.

  1. To avoid ugly multiple scroll bars, it forces overflow-y: hidden for floating container.
  2. Even with overflow-y: hidden, content can still be scrolled by JavaScript.
  3. When page is scrolled down / up, floating content will be scrolled in the same way.
  4. Since it listens to window, you can point mouse cursor anywhere on the page, or even use keyboard.
  5. Scrolling syncronization has the same behavior on all modern browsers. No unexpected scrolling conflicts anymore.

Download / Install

NPM + Webpack / Browserify

Install with NPM.

npm install sticky-scroller --save

Import with Webpack or Browserify.

// Old way
var StickyScroller = require("sticky-scroller");

// New way
import StickyScroller from "sticky-scroller";

Download and Link

Download latest release and unpack, you will need dist/sticky-scroller.js.

Link it in HTML.

<!-- Option 1: Vanilla JavaScript -->
<script src="path/to/sticky-scroller/dist/sticky-scroller.js"></script>

<!-- Option 2: use jQuery plugin (not recommended) -->
<script src="path/to/sticky-scroller/dist/sticky-scroller.jquery.js"></script>

RequireJS

AMD package is build for you if you prefer RequireJS.

<script src="path/to/sticky-scroller/dist/sticky-scroller.amd.js"></script>
requirejs(["StickyScroller"], function(StickyScroller) {
  // What ever you like
});

SystemJS

UMD module is placed at dist/sticky-scroller.umd.js

Usage

Change top and height (or max-height) to whatever you like. Make sure it is within viewport. You don't need overflow-y: hidden since it will be added by JavaScript.

.my-sidebar {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  height: 100vh;
}
const scroller = new StickyScroller(".my-sidebar");

If you prefer to use it with jQuery:

$(".my-sidebar").stickyScroller();

API

StickyScroller(element, options)

Constructor of main controller.

element string | HTMLElement

The sticky element. Use a selector string or HTMLElement object.

options Object

No option available now.

Copyright

Copyright 2018 Guo Yunhe.

License

GNU General Public License version 3 or later.