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-image-slider-3d

v0.3.1

Published

This 3D Image slider was inspired by the [video](https://www.youtube.com/watch?v=yqaLSlPOUxM) created by [Lun Dev Code](https://www.youtube.com/@lundeveloper)

Downloads

5

Readme

3D Image Slider React Wrapper

This 3D Image slider was inspired by the video created by Lun Dev Code

This library is a react wrapper that allows the use of the slider in React and Next.js projects. There are number of options you can try changing to change the view and animation options.

View a Next.js Demo here

Installation

Install using npm

npm install react-image-slider-3d

Usage

  • Import the library
    import { ImageSlider } from "react-image-slider-3d";
  • The following code is a usage example of library
        <ImageSlider
          images={[
            {src: 'https://picsum.photos/200/300?random=1&blur=2'},
            {src: 'https://picsum.photos/200/300?random=2'},
            {src: 'https://picsum.photos/200/300?random=3'},
            {src: 'https://picsum.photos/200/300?random=4'},
            {src: 'https://picsum.photos/200/300?random=5'}
          ]}
          xRotation="-30deg"
          perspective="1000px"
          zTranslation="200px"
          className="imageSlider"
        />

Props

| Prop| Default Value | Required | Description | Data Type | |-----|---------------|-------------|-------------|-----------| |images|N/A|Yes| An array of objects containing src attribute e.g. [{ src: 'url to image'}] | Array of objects with key src of type string | |perspective|1000px|No|value of perspective transformation is the distance between z=0 and user| string| |xRotation|20deg|No|value of rotation of the slider around the X axis| string| |zTranslation|300px|No|distance between z=0 and items| string| |className|imageSlider|No|className of the container div| string| |animationDuration|3s|No|Duration of the animation|string| |animationTimingFunction|linear|No|Timing function of the animation|string| |animationIterationCount|infinite|No|Count of the animation's iterations|string| |animationDirection|normal|No|direction of the animation|string| |animationDelay|0s|No|delay before start of the animation|string| |animationFillMode|0s|No|animation fill mode css: animation-fill-mode|string|