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

react-animations-ts

v0.0.8

Published

Effortlessly animate React components with TypeScript precision using our lightweight, dependency-free animation library.

Downloads

10

Readme

react-animations-ts

NPM version Build npm-typescript License

Now its under development. Please don’t download this.

Installation:

npm install react-animations-ts --save-dev

or

npm install -D react-animations-ts

Animation Types

1. SlideAnimatedBox

Props are : duration, startPosition, endPosition, animationType You can play around with 0 (Note : 0 is the actual position of the element), positive and negative numbers.

animationType Behaviour :

Slide Animation: Top to Bottom (SLIDE_TOP_BOTTOM)

  1. When the startPosition is 0:
    • If the endPosition is a positive number, the element will move from its actual position to the bottom.
    • If the endPosition is a negative number, the element will move from its actual position to the top.
  2. When the endPosition is 0:
    • If the startPosition is a negative number, the element will move from the top to its actual position.
    • If the startPosition is a positive number, the element will move from the bottom to its actual position.

Slide Animation: Left to Right (SLIDE_LEFT_RIGHT)

  1. When the startPosition is 0:
    • If the endPosition is a positive number, the element will move from its actual position to the right.
    • If the endPosition is a negative number, the element will move from its actual position to the left.
  2. When the endPosition is 0:
    • If the startPosition is a negative number, the element will move from the left to its actual position.
    • If the startPosition is a positive number, the element will move from the right to its actual position.

Slide Animation: Top-Right to Bottom-Left (SLIDE_TR_BL)

  1. When the startPosition is 0:
    • If the endPosition is a positive number, the element will move from its actual position to the top-right corner.
    • If the endPosition is a negative number, the element will move from its actual position to the bottom-left corner.
  2. When the endPosition is 0:
    • If the startPosition is a negative number, the element will move from the top-left corner to its actual position.
    • If the startPosition is a positive number, the element will move from the bottom-right corner to its actual position.

Usage :

import React from 'react'
import ReactDOM from 'react-dom/client'
import { SlideAnimatedBox } from 'react-animations-ts'


const squareBoxStyle: React.CSSProperties = {
  width: '100px',
  height: '100px',
  background: 'white',
  color:'#0C161C',
  borderRadius: '8px',
  display: 'flex',
  justifyContent: 'center',
  alignItems: 'center',
};
const flexBoxStyle: React.CSSProperties = {
  display: 'flex',
  justifyContent: 'center',
  alignItems: 'center',
  height: '80vh',
  background:'#0C161C'
}

const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)

root.render(
    <React.StrictMode>
        <div style={flexBoxStyle}>
            <SlideAnimatedBox duration={1000} startPosition={-100} endPosition={100}>
                <div style={squareBoxStyle}>OMM</div>
            </SlideAnimatedBox>
        </div>
    </React.StrictMode>,
)