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-magic-card

v2.0.7

Published

React Component library for images gallery using the framer motion animation.

Downloads

78

Readme

react-magic-card

Release Status Minzip Size License: MIT

This is the framer motion components, that support images gallery.

Installation

npm install react-magic-card framer-motion

Usage Guide

import { MagicCircle } from 'react-magic-card'

function MyComponent() {
  const images = [
    {
      src: '/src.jpeg',
      alt: 'alt'
    }
  ]

  return (
    <MagicCircle
      images={images}
      width={100}
      height={100}
      radius={100}
      controller={100}
      start={1}
      delay={100}
    />
  )
}

Common Properties

| Property | Meaning | | --------------------- | ----------------------------------------------------------------- | | images (required) | array of images and objects containing the src and alt properties | | start (required) | index number of the array of start scale position | | width (required) | width of the single image | | height (required) | height of the single image | | controller (required) | controller size is add to the size of the component | | delay | delay of the animation firing interval | | offsetIndex | add an offset to the index of the components and images | | reverseIndex | order the change the overlap of zindex default true | | loading | loading attribute of img element in html | | initialFadeRange | range of fade animation after page loaded | | initialTransTime | transition time of fade animation after page loaded | | className | className of the component | | classImages | className of the images | | classImageSelect | className of the select image | | classImageUnique | className of the index number is assigned to the end | | animate | object in the animation property | | initial | object in the animation property | | transition | object in the transition property | | pickTransition | object in the transition property | | pickProperty | object in the pick property |

MagicCircle Properties

| Property | Meaning | | ----------------- | ----------------------------------------------- | | radius (required) | radius of the circle | | dynamic | dynamic or static for rotation the default true |

MagicStraight Properties

| Property | Meaning | | ------------- | --------------------------------------- | | vertical | vertical or horizontal the default true | | margin | spacing of the between images | | selectOffsetX | X-axis position | | selectOffsetY | Y-axis position |

Animation Object

| Property | Meaning | | ------------- | ------------------------------------- | | scale | scaling of the images | | opacity | opacity or transparency of the images | | rotateX | X-axis rotation of the images | | rotateY | Y-axis rotation of the images | | rotateZ | Z-axis rotation of the images | | selectScale | scaling of the selected image | | selectOpacity | opacity of the selected image | | selectRotateX | X-axis rotation of the selected image | | selectRotateY | Y-axis rotation of the selected image | | selectRotateZ | Z-axis rotation of the selected image |

Transition Object

It is Inherits framer motion transition object other than intera.

PickProperty Object

| Property | Meaning | | --------- | --------------------------------------------------------- | | classPick | className of the pick image | | white | white or black for background the default true | | alpha | background transparency of a number between 0 ~ 1 | | blur | blur intensity of a number between 1 ~ 20 a preferred | | scale | scale of the pick image | | offset | offset of an appearance position from the center position |

License

The MIT License.