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

slide-animator

v1.0.4

Published

Slide Animator is a JavaScript module that helps with animating the sliding of HTML elements.

Downloads

22

Readme

Slide Animator

This module provides three functions for creating sliding animations with CSS transitions: slideUp, slideDown, and slideToggle.

Installation

To install Slide Animator, run the following command:

// NPM
npm install slide-animator

// Yarn
yarn add slide-animator

// PNPM
pnpm add slide-animator

Usage

To use Slide Animator, import the slideUp(), slideDown() and slideToggle() functionalities from the slide-animator package, and then call them with the element and time arguments to animate the element. For example:

import { slideUp, slideDown, slideToggle } from 'slide-animator';

const element = document.querySelector('#my-element');
const time = 200; // time in milliseconds

slideUp(element, time);
slideDown(element, time);
slideToggle(element, time);

slideUp(target, duration)

Slides an element up by setting its height, margin, and padding to 0 over a specified duration.

Arguments

  1. target - The element to slide up. This must be an HTMLElement.
  2. duration - The duration of the slide transition in milliseconds. This defaults to 300ms if not specified.

slideDown(target, duration, displayProp)

Slides an element down by setting its height and spacings to their original values over a specified duration.

Arguments

  1. target - The element to slide down. This must be an HTMLElement.
  2. duration - The duration of the slide transition in milliseconds. This defaults to 300ms if not specified.
  3. displayProp - The CSS display property to use when sliding down the element. This defaults to "block" if not specified.

slideToggle(target, duration, displayProp)

Toggles the visibility of an element by sliding it up or down.

Arguments

  1. target - The element to slide up or down. This must be an HTMLElement.
  2. duration - The duration of the slide transition in milliseconds. This defaults to 300ms if not specified.
  3. displayProp - The CSS display property to use when sliding down the element. This defaults to "block" if not specified.