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

simple-image-carousel

v1.2.5

Published

customizable image slider component for React and Next.js with built-in lazy loading.

Downloads

51

Readme

simple-image-carousel Demo WebSite

image-slider

Install

npm i simple-image-carousel

Languages

🇰🇷 Korea

🇺🇸 English

Korea

이미지 슬라이더는 기본적으로 lazy loading을 지원하여, 스크롤 시점에 이미지를 로드합니다. | Props | 설명 | 기본값 | 타입 | |---------------------|----------------------------------------------------------------------------|--------------------|---------------------| | images | { url: string } 형식의 객체 배열로, 슬라이더에 표시할 이미지 URL을 포함합니다. | - | { url: string }[] | | showArrows | 슬라이더 양 옆에 화살표를 표시할지 여부를 설정합니다. | true | boolean | | showDots | 슬라이더 하단에 점을 표시할지 여부를 설정합니다. | true | boolean | | enableDrag | 드래그 기능을 활성화할지 여부를 설정합니다. | true | boolean | | enableLoop | 슬라이더의 루프 기능을 활성화할지 여부를 설정합니다. 자동 슬라이드가 활성화 돼있으면 해당 값은 true가 됩니다. | true | boolean | | width | 슬라이더의 너비를 설정합니다. | null | number | null | | height | 슬라이더의 높이를 설정합니다. | null | number | null | | objectFit | 이미지를 맞추는 방식을 설정합니다. | fill | "fill" | "contain" | "cover" | "none" | "scale-down" | | dotColor | 점의 색상을 설정합니다. | rgb(0, 114, 255) | string | | dotHoverColor | 점을 마우스로 가리킬 때의 색상을 설정합니다. | rgb(135, 135, 135) | string | | dotBorderColor | 점의 테두리 색상을 설정합니다. | rgb(152, 152, 152) | string | | arrowColor | 화살표의 색상을 설정합니다. | white | string | | arrowSize | 화살표의 크기를 설정합니다. | 50 | number | | dotSize | 점의 크기를 설정합니다. | 13 | number | | borderRadius | 슬라이더의 모서리 반경을 설정합니다. | 0 | number | | autoSlider | 자동 슬라이드 시간(밀리초)을 설정합니다. | 0 | number | | duration | 슬라이드 애니메이션 지속 시간(밀리초)을 설정합니다. | 300 | number |

사용 예제

import React from 'react';
import ImageSlider from 'simple-image-carousel';

const images = [
  { url: 'https://example.com/image1.jpg' },
  { url: 'https://example.com/image2.jpg' },
  { url: 'https://example.com/image3.jpg' },
];

const App = () => (
{/* 넓이를 지정해 주지 않으면 기본적으로 부모 크기의 100%를 차지합니다 */}
   <div>
    <ImageSlider images={images} />
  </div>

{/* 아래와 같은 props를 사용할 수 있습니다. */}
  <div>
    <ImageSlider
      images={images}
      showArrows={true}
      showDots={true}
      enableDrag={true}
      enableLoop={true}
      width={600}
      height={400}
      objectFit="cover"
      dotColor="blue"
      dotHoverColor="lightblue"
      dotBorderColor="darkblue"
      dotSize={20}
      arrowColor="black"
      arrowSize={40}
      borderRadius={10}
      autoSlider={3000}
      duration={500}
    />
  </div>
);

export default App;

NextJS와 함께 사용

import dynamic from "next/dynamic";

const ImageSlider = dynamic(() => import("simple-image-carousel"), {
	ssr: false,
});

English

The image slider supports lazy loading by default, loading images as they come into view during scrolling. | Props | Description | Default | Type | |---------------------|----------------------------------------------------------------------------|--------------------|---------------------| | images | An array of objects { url: string } containing image URLs to be displayed in the slider. | - | { url: string }[] | | showArrows | Determines whether arrows are shown on the sides of the slider. | true | boolean | | showDots | Determines whether dots are shown at the bottom of the slider. | true | boolean | | enableDrag | Enables or disables the drag functionality. | true | boolean | | enableLoop | Enables or disables the loop functionality of the slider. If auto slider is enabled, this value will be set to true. | true | boolean | | width | Sets the width of the slider. | null | number | null | | height | Sets the height of the slider. | null | number | null | | objectFit | Sets the object fit mode for the images. | fill | "fill" | "contain" | "cover" | "none" | "scale-down" | | dotColor | Sets the color of the dots. | rgb(0, 114, 255) | string | | dotHoverColor | Sets the color of the dots when hovered over. | rgb(135, 135, 135) | string | | dotBorderColor | Sets the border color of the dots. | rgb(152, 152, 152) | string | | arrowColor | Sets the color of the arrows. | white | string | | arrowSize | Sets the size of the arrows. | 50 | number | | dotSize | Sets the size of the dots. | 13 | number | | borderRadius | Sets the border radius of the slider. | 0 | number | | autoSlider | Sets the automatic slider interval time in milliseconds. | 0 | number | | duration | Sets the duration of the slide animation in milliseconds. | 300 | number |

Example Usage

import React from 'react';
import ImageSlider from 'simple-image-carousel';

const images = [
  { url: 'https://example.com/image1.jpg' },
  { url: 'https://example.com/image2.jpg' },
  { url: 'https://example.com/image3.jpg' },
];

const App = () => (
{/* If you don't specify a width, it defaults to 100% of the parent's size */}
   <div>
    <ImageSlider images={images} />
  </div>

{/* You can use the following props */}
  <div>
    <ImageSlider
      images={images}
      showArrows={true}
      showDots={true}
      enableDrag={true}
      enableLoop={true}
      width={600}
      height={400}
      objectFit="cover"
      dotColor="blue"
      dotHoverColor="lightblue"
      dotBorderColor="darkblue"
      dotSize={20}
      arrowColor="black"
      arrowSize={40}
      borderRadius={10}
      autoSlider={3000}
      duration={500}
    />
  </div>
);

export default App;

with NextJS

import dynamic from "next/dynamic";

const ImageSlider = dynamic(() => import("simple-image-carousel"), {
	ssr: false,
});