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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hero-stand-3d

v0.1.5

Published

A reusable 3D standing hero block with mouse-rotate interaction.

Readme

Card Reveal Background

Live Demo NPM Version

A React-friendly package for creating a standing 3D card reveal background effect.

The main entry point is HeroCardContainer, which accepts a single props object and renders a stacked card scene with a fixed base tilt, per-card hover behavior, optional mouse-driven dynamics, and adjustable density.

Live Demo

Click Here to Experience the Interactive 3D Live Demo

Experience the smooth 3D card tilt, hover lift, and dynamic pointer behaviors directly in your browser without installing anything!


Install

npm install hero-stand-3d react react-dom

Basic Usage

import { HeroCardContainer } from "hero-stand-3d";
import "hero-stand-3d/style.css";

export default function App() {
  return (
    <HeroCardContainer
      items={[
        { image: "/images/a.jpg", href: "/a" },
        { image: "/images/b.jpg", href: "/b" },
        { image: "/images/c.jpg", href: "/c" },
      ]}
      baseAngles={{ x: 70, y: 0, z: 40 }}
      hoverRotate={0}
      hoverShift={0}
      density={0.3}
      enableMouseDynamic={true}
      resetOnPointerLeave={false}
      cardAspectRatio="16 / 9"
    />
  );
}

Props

| Prop | Type | Default | Description | | --------------------- | ---------------------------------------- | -----------------------: | ---------------------------------------------------- | | items | Hero3DProjectItem[] | required | Array of cards to render | | baseAngles | { x?: number; y?: number; z?: number } | { x: 70, y: 0, z: 40 } | Initial tilt of the outer list plane | | hoverRotate | number | 0 | Additional pointer-driven rotation range | | hoverShift | number | 0 | Hover lift in pixels | | density | number | 0.3 | Stack compactness from loose (0) to dense (1) | | enableMouseDynamic | boolean | true | Enables pointer-based X/Z angle dynamics | | resetOnPointerLeave | boolean | false | If true, the stack returns to base angles on leave | | transitionMs | number | 320 | Transition duration in milliseconds | | cardAspectRatio | string | 16 / 9 | Card aspect ratio | | className | string | "" | Extra class name applied to the root element |

Item props

| Prop | Type | Default | Description | | ---------------- | -------- | -------- | --------------------------------- | | image | string | required | Background image URL | | title | string | optional | Optional card title | | href | string | "#" | Card link URL | | target | string | optional | Link target, for example _blank | | overlayOpacity | number | 0.52 | Default overlay opacity |

Behavior

  • The outer project-list-wrap stays flat in 3D space.
  • The inner project-list is tilted with the configured base angles.
  • Each project-item stands upright using rotateX(-90deg) rotateY(0deg) rotateZ(0deg).
  • Hovering a card lifts it, fades the overlay, and brings it to the front.
  • If enableMouseDynamic is enabled, pointer movement adjusts the base angles around the center point.

What to check

  • Cards stand upright and stay centered in the viewport
  • Hovering a card lifts it and fades its overlay
  • Density changes the stack spacing
  • The mouse dynamic toggle changes pointer behavior
  • The layout still looks correct on mobile

API

HeroCardContainer

import { HeroCardContainer } from "hero-stand-3d";

Use HeroCardContainer when you want a React component interface. It accepts the same props listed above and internally mounts the card scene for you.

createHero3DProjectList(element, props)

You can still use the imperative DOM API directly if you prefer.

Returns:

  • destroy() - removes the rendered content and listeners
  • update(partialProps) - updates options and/or items

createHero3D(element, options)

Legacy single-card mode is still available.

import { createHero3D } from "hero-stand-3d";
import "hero-stand-3d/style.css";

const heroEl = document.getElementById("hero");

if (heroEl) {
  createHero3D(heroEl, {
    maxRotate: 12,
    depth: 48,
    scaleOnHover: 1.03,
    glare: true,
  });
}