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

@schptr/stickjs

v0.9.1

Published

If position sticky is not working i got you

Downloads

1

Readme

STICKJS

Do you find css sticky position annoying? If yes we are on the same boat, this small package will programically add sticky functionality through plain javascript to your desired element and even a little bit more.

Usage

Install as an npm package

npm install @schptr/stickjs

Import the functions that you need

import { isSticky } from "@schptr/stickjs";

Import css

import "@schptr/stickjs/src/stick.css";

or add snipet below to your css files

.is-sticky {
  position: fixed;
  top: var(--offsetTOP);
  left: var(--offsetLEFT);
  right: var(--offsetRIGHT);
  bottom: var(--offsetBOTTOM);
}

Initialize on an given element or id

import { isSticky } from "@schptr/stickjs"; //Import function

let options = { direction: "bottom", offset: 50 }; //Define options
let element = document.getElementById("sticky-element"); //Define element

isSticky(element, options); //Initialize stickyjs

Use cases

  • Making element sticky in any given direction
  • Offsetting a sticky element to match gaps, paddings or margins
  • Checking if elements are in viewport
  • Highlighting element if different element is in viewport

Options

{
    direction: "top",
    offset: 0,
    viewport: 0,
    keepWidth: true,
    keepHeight: true,
}

direction

direction in which element will stick - "top", "bottom", "left", "right".
Default:

"top";

offset

If we do not want element to stick exactly on screen end in given direction we can set an offset in pixels.
Default:

0;

viewport

sometimes we do not want the element to stick on devices with lower resosution, viewport is the least ammount of pixels of width that trigger sticky behaviour. If the viewer width is less then given number, element will not stick.
Default:

0;

keepWidth

If we need the element to keep exact width after sticking set it to true.
Default:

true;

keepHeight

If we need the element to keep exact height after sticking set it to true.
Default:

true;

Functions

isSticky

parameters:

target (element or id), options

initializes sthe script on given element or id with passed or default options, returns void

isOverOffset

prameters:

target (element), anchor and options

returns true if element is over offset and sticky behaviour should be triggered

stick

parameters:

target (element), options

makes element sticky by adding class, makes sure width and height are kept as position property is changed if needed, returns void

unstick

parameters:

target (element), options

removes sticky behaviour from element

inYViewport

parameters:

target (element)

return true when element is in Y viewport (visible on screen)

inXViewport

parameters:

target (element)

return true when element is in X viewport (visible on screen)

activeIfInViewport

parameters:

target (element), isXAxis (default false), activeClass (default "active")

adds an class to target if in viewport, set isXAxis to true if you need to check for X axis instead of Y

activeIfOtherInViewport

parameters:

target (element), other (element), isXAxis (default false), activeClass (default "active")

adds an class to target if other element is in viewport, set isXAxis to true if you need to check for X axis instead of Y

Browser compatibility

Stickjs is supported by all of the modern browsers. The least compatible are css variables that are still widely supported, more on that topic here

Testing

npm run test