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

divz

v1.1.6

Published

A React UI component that lets you scroll, swipe & zoom through HTML elements on the 3D z-axis

Downloads

526

Readme

Installation

npm install divz

Basic Usage

Import the component and render it in your app or page, wrapping it around your list of divs or other HTML elements:

import { Divz } from "divz";

function App() {
  return (
    <Divz>
      <div>1</div>
      <div>2</div>
      <div>3</div>
      <div>4</div>
    </Divz>
  );
}

:point_right: Try out the demos :point_left:

https://lewhunt.github.io/divz

Advanced Usage

The demos illustrate how the component can be initialised with more props - along with images and videos inside the child divs - for a richer user experience.

<>
  <img className="background" src={`./demo2/${selectedIndex + 1}-bg.jpg`} />

  <Divz
    className="demo2"
    autoPlay={true}
    autoPlayDuration={5000}
    onIndexChange={(i) => setSelectedIndex(i)}
  >
    {demo2Images.map((imageUrl, index) => (
      <div key={index}>
        <img src={imageUrl} />
      </div>
    ))}
  </Divz>
</>

https://github.com/lewhunt/divz/assets/9886284/9c51fec4-f0e6-4753-9e91-7aca5546ff18

Why Divz?

Divz was created to quickly showcase portfolio work within a pseudo-3D environment, loosely inspired by Apple's Time Machine interface which allows the user to zoom through historical Finder windows:

https://en.wikipedia.org/wiki/Time_Machine_%28macOS%29

What Sets It Apart?

  • Simplified Integration: Divz is designed to be responsive and easy to use, acting as a straightforward wrapper around a list of divs or other HTML elements.
  • Diverse Applications: While the demos showcase its versatility as a carousel, slideshow, or gallery component, Divz opens the door to a range of other potential uses. Consider it an innovative, experimental method for navigating web content.
  • Broad Device Support: Divz accommodates various navigation modes, including touch for mobile devices, cursor/trackpad for desktop users, and arrow keys for TV devices.

How Does It Work?

Under the hood, Divz performs CSS3 transforms on the core component and the child HTML elements, set dynamically with React TypeScript. The component is packaged using Vite to allow npm library integration.

Props

| Prop | Description | Default | | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | | autoPlay | Set to true to autoplay a carousel sequence of any children div elements | false | | isAutoPlayLooped | Set to true to enable the autoPlay sequence to endlessly loop | true | | autoPlayDuration | Set the time interval in milliseconds for the autoPlay feature | 6000 | | showPlayButton | Set to true to display the autoPlay toggle button | true | | showNavButtons | Set to true to display the up/down navigational buttons for cycling between div children | true | | showExpandButton | Set to true to display the 'full-screen' expand button which is used to toggle the scale of div items | true | | showNavButtonsOnExpanded | Set to true to display the navigational buttons when div items have been expanded | false | | isExpanded | Set to true to toggle the scale of div items | false | | isDarkMode | Set to true to set the buttons UI styling to dark mode | false | | isSnapEnabled | Set to true to ensure the transform animation is snap-fixed to only move between the div items | true | | isScrollPageEnabled | Set to true to override the preferred 'fullscreen' behaviour and enable web page scrolling. However, page scrolling is not recommended when using Divz, as it may also trigger divz swipe interaction | false | | selectIndex | Set the index number to force it to instantly jump to position of a div child item. By default it will instead zoom animate to the first item. | null | | className | Insert additional classname values for overriding the component CSS styling | null | | onIndexChange | Called when navigation occurs and the currently selected divz item has changed index | | | onPlaying | Called when autoPlay sequence starts or stops | |

Credits

Sample media used in the demos are from various open source projects:

  • Demo 2 images are generated in Midjourney by Manoela Ilic (link)
  • Demo 3 images and video are from Pixabay (link)
  • Demo 4 images are generated in Midjourney by Manoela Ilic (link)

Support

I hope this has given a good intro to the component and you get some use out of it for your own projects!

💬 Fire over a comment if you have any feedback, requests or issues 🐛

⭐ Give it a star if you like the component or want to bookmark it 🙏