README.md

April 16, 2026 Β· View on GitHub

Flicking Logo
@egjs/flicking

version npm bundle size (scoped) Coveralls github DeepScan grade

GitHub commit activity npm downloads per month GitHub contributors GitHub

React Vue

Demo / Documentation / Other components

Reliable, flexible and extendable carousel component.
πŸ“±πŸ’»πŸ–₯


iPhone demo Music app demo Full page demo
Parallax demo
πŸ–±οΈClick each images to see its source or check our full demos.

✨ Features

  • SSR ready β€” works with Next.js and Nuxt
  • Circular mode β€” seamless infinite loop
  • Free scroll β€” momentum-based native scroll experience
  • Virtual scroll β€” render only visible panels for large datasets
  • Plugins β€” AutoPlay, Fade, Parallax, Arrow, Pagination via @egjs/flicking-plugins
  • TypeScript β€” fully typed API

βš™οΈ Installation

npm

$ npm install --save @egjs/flicking

CDN

πŸƒ Quick Start

HTML

Flicking requires minimal structure to initialize properly.

You don't need to consider this when using Flicking with the frameworks.

<div id="my-flicking" class="flicking-viewport">
  <div class="flicking-camera">
    <div class="panel"></div>
    <div class="panel"></div>
    <div class="panel"></div>
  </div>
</div>

ES Modules

import Flicking from "@egjs/flicking";
import "@egjs/flicking/dist/flicking.css";

const flicking = new Flicking("#my-flicking", { circular: true });

With CDN

<!-- Packaged with all dependencies -->
<script src="https://unpkg.com/@egjs/flicking/dist/flicking.pkgd.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@egjs/flicking/dist/flicking.css">
var flicking = new Flicking("#my-flicking", { circular: true });

πŸ“¦ Packages

This repository is a monorepo that contains Flicking and all its related packages.

PackageVersionDescription
@egjs/flickingversionCore carousel library
@egjs/flicking-pluginsversionReadymade effects for your carousel
@egjs/react-flickingversionReact React port of @egjs/flicking
@egjs/vue3-flickingversionVue.js Vue 3 port of @egjs/flicking

🌐 Supported Browsers

ChromeFirefoxSafariiOSAndroid
LatestLatestLatest7+4+

πŸ€– AI Native

egjs is investing in an AI-native development experience β€” use-case-centered documentation, stronger TypeScript types, clearer error messages, and predictable internals to help both humans and AI agents use Flicking correctly.

πŸ“– Documentation & Demos

πŸ™Œ Contributing

See CONTRIBUTING.md. Please file issues on GitHub.

πŸ“œ License

@egjs/flicking is released under the MIT license.

Copyright (c) 2015-present NAVER Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Β Β Β Β Β Β