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

v0.2.2

Published

A tiny configurable carousel component for React

Downloads

221

Readme

react-card-stack-carousel

Stacked card carousal component with configurable 3D transition effect.

Demo

Getting started

Install react-card-stack-carousel from NPM

npm i react-card-stack-carousel

# OR

yarn add react-card-stack-carousel

Import react-card-stack-carousel styles

// import base styles at the top of your component
import "react-card-stack-carousel/styles/styles.css";

Usage

NOTE: StackedCarousel requires a height property to be specified

import React from "react";
import { StackedCarousel } from "react-card-stack-carousel";
import "react-card-stack-carousel/styles/styles.css"; // import base styles

export default function App() {
    // specify container height
    const containerHeight = 250;

    return (
        <main className="container">
            <StackedCarousel height={containerHeight}>
                <div className="sample-card bg-color-1">0</div>
                <div className="sample-card bg-color-2">1</div>
                <div className="sample-card bg-color-3">2</div>
            </StackedCarousel>
        </main>
    );
}

Responsive height

Height prop supports Tailwind CSS based breakpoint system to accommodate responsive design. To specify a height at a certain breakpoint, prefix the breakpoint name, followed by the ":" character.

<!-- 200px on mobile (default), 500px on medium screens and 750px on large screens -->
<StackedCarousel height="200 md:500 lg:750">{...}</StackedCarousel>

Visit responsive-design for the exhaustive list of supported breakpoints.

Props

| Prop | Type | Default | Required | Description | | -------------------- | ---------------- | ------------------------------------ | -------- | ------------------------------------------------- | | height | number or string | - | Yes | Height of the carousel. | | children | ReactNode | - | Yes | Children nodes of the carousel. | | autoplay | boolean | false | No | Automatically transition between items. | | autoplayInterval | number | 4000 | No | Interval between automatic transitions. | | easingFunction | string | cubic-bezier(0.93, 0.01, 0.39, 1.01) | No | Easing function to use for the transitions. | | onNext | function | - | No | Callback function on moving to the next item. | | onPrevious | function | - | No | Callback function on moving to the previous item. | | styleOverrides | object | - | No | Override default styles of the carousel | | scaleFactor | number | 0.9 | No | Scale factor for the carousel items. | | startIndex | number | 0 | No | Index of the item to start on. | | transitionDuration | number | 400 | No | Duration of the transitions in milliseconds. | | verticalOffset | number | 10 | No | % vertical offset for the carousel items. |

Running locally

  1. Clone the repo and install the dependencies. In the repo's root, run
# using NPM
npm install

# using yarn
yarn install
  1. Switch to the playground folder
cd ./playground
  1. Start the development server
# start the Vite development server
yarn dev

Todo

  • [ ] Auto compute the container height based on height of the active card
  • [ ] Support touch/drag gesture based navigation
  • [ ] Plugin system to enable custom transition styles