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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ji-react-carousel

v1.0.22

Published

ji carousel library

Readme

ji-react-carousel

React 컴포넌트를 요소로 받아 간단한 Carousel을 만들어 주는 라이브러리입니다.

carousel-gif

주요기능

  • infinite: 좌우 스크롤이 끝나지 않고 무한정 동작하는 Carousel 기능을 제공합니다.
  • auto & autoTimer: autoTimer로 원하는 시간을 지정하여 자동으로 스크롤되는 Carousel 기능을 제공합니다.
  • paging: pagination 기능을 제공하는 Carousel을 제공합니다.
  • focus: Carousel에서 강조되는 효과를 제공합니다

Get Started

npm install ji-react-carousel

구성 및 옵션

Carousel

기본적인 Carousel Component

<Carousel width={200} viewCount={3} LeftArrow={<div>left</div>} RightArrow={<div>right</div>}>
  <div style={{ height: "100%", background: "blue" }}>1</div>
  <div style={{ height: "100%", background: "green" }}>2</div>
  <div style={{ height: "100%", background: "pink" }}>3</div>
  <div style={{ height: "100%", background: "yellow" }}>4</div>
  <div style={{ height: "100%", background: "orange" }}>5</div>
</Carousel>

Carousel options

width: Carousel Item의 넓이
viewCount: Carousel에서 한번에 보여줄 item의 갯수
infinite: 무한 슬라이드 on/off 옵션. default = false
auto: 자동 슬라이드 on/off 옵션. default = false
autoTimer: 자동 슬라이드 타이머. default = 3000
LeftArrow: 왼쪽 화살표 UI(React.ReactElement)
RightArrow: 오른쪽 화살표 UI(React.ReactElement)

FocusCarousel

강조되는 아이템이 나오는 Carousel Component

<FocusCarousel width={300}>
  <div style={{ height: "100%", background: "blue" }}>1</div>
  <div style={{ height: "100%", background: "green" }}>2</div>
  <div style={{ height: "100%", background: "pink" }}>3</div>
  <div style={{ height: "100%", background: "yellow" }}>4</div>
  <div style={{ height: "100%", background: "orange" }}>5</div>
</FocusCarousel>

FocusCarousel options

width: Carousel Item의 넓이
auto: 자동 슬라이드 on/off 옵션. default = false
autoTimer: 자동 슬라이드 타이머. default = 3000

PagingCarousel

페이지버튼과 연동되는 Carousel Component

<PagingCarousel width={300}>
  <div style={{ height: "100%", background: "blue" }}>1</div>
  <div style={{ height: "100%", background: "green" }}>2</div>
  <div style={{ height: "100%", background: "pink" }}>3</div>
  <div style={{ height: "100%", background: "yellow" }}>4</div>
  <div style={{ height: "100%", background: "orange" }}>5</div>
</PagingCarousel>

PagingCarousel options

width: Carousel Item의 넓이
auto: 자동 슬라이드 on/off 옵션. default = false
autoTimer: 자동 슬라이드 타이머. default = 3000

License

Distributed under the Unlicense License. See LICENSE.txt for more information.