
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
slide-animator
Advanced tools
Slide Animator is a JavaScript module that helps with animating the sliding of HTML elements.
This module provides three functions for creating sliding animations with CSS transitions: slideUp, slideDown, and slideToggle.
To install Slide Animator, run the following command:
// NPM
npm install slide-animator
// Yarn
yarn add slide-animator
// PNPM
pnpm add slide-animator
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.
target - The element to slide up. This must be an HTMLElement.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.
target - The element to slide down. This must be an HTMLElement.duration - The duration of the slide transition in milliseconds. This defaults to 300ms if not specified.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.
target - The element to slide up or down. This must be an HTMLElement.duration - The duration of the slide transition in milliseconds. This defaults to 300ms if not specified.displayProp - The CSS display property to use when sliding down the element. This defaults to "block" if not specified.FAQs
Slide Animator is a JavaScript module that helps with animating the sliding of HTML elements.
We found that slide-animator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.