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

product-slider-react

v1.0.5

Published

React slider component for showing product images to be used in e-commerce application

Downloads

356

Readme

product-slider-react

ProductSlider Component The ProductSlider component is a versatile image slider designed for React applications. It allows you to display a set of images in a customizable carousel format. You can enable magnification, navigation buttons, and adjust various styling options. this component can be used in e-commerce applications to display products and mockups.

screenshot

Installation To use the ProductSlider component in your project, follow these steps:

Install the package via npm or yarn:

npm install product-slider-component

or

yarn add product-slider-component

Import the component into your React application:

import { ProductSlider } from 'product-slider-react';

if you just want to use magnifier for any image

import { Magnifier } from 'product-slider-react';

Usage

The ProductSlider component accepts the following props:

width (optional): The width of the slider (default: “700px”).
height (optional): The height of the slider (default: “100%”).
magnify (optional): Enable image magnification (default: true).
images: An array of image objects with an img property containing the image URL.*upto 14 images if tilePostion is "bottom" else 10*
magnifierSize (optional): Size of the magnifier (default: 200).
zoomLevel (optional): Zoom level for the magnified image (default: 3).
MagnifierBorderRadius (optional): Border radius for the magnifier (default: “50”).
prevIcon (optional): Custom icon for the previous button (default: “<”).
nextIcon (optional): Custom icon for the next button (default: “>”).
buttonBg (optional): Background color for navigation buttons (default: “#b8b7b4”).
imgBg (optional): Background color for the main image (default: “#b8b7b4”).
imgRadius (optional): Border radius for the main image (default: “20px”).
tileRadius (optional): Border radius for thumbnail tiles (default: “10px”).
tilePosition (optional): Position of thumbnail tiles (“bottom” | “right” | “left”, default: “bottom”).

Example usage:

<ProductSlider
  width="800px"
  height="60vh"
  images={[
    { img: 'image1.jpg' },
    { img: 'image2.jpg' },
    // Add more images...
  ]}
  // Other props...
/>

Magnifier

The Magnifier component is used internally by the ProductSlider component for image magnification. You can also use it independently if needed.

Props for Magnifier:

imgUrl: The URL of the image to magnify.
magnifierSize (optional): Size of the magnifier (default: 200).
zoomLevel (optional): Zoom level for the magnified image (default: 3).
BorderRadius (optional): Border radius for the magnifier (default: “50”).

Example usage:

<Magnifier
  imgUrl="image.jpg"
  magnifierSize={150}
  zoomLevel={2}
  BorderRadius="30"
/>

License This component is released under the MIT License. Feel free to use it in your projects!

Message: this is the initial version of our component! While it may have a few quirks, rest assured—we’re actively working to resolve them. If you’d like to explore the code, visit our GitHub repository. Your feedback and assistance in solving the issues are most welcome.