Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More β†’
Socket
Sign inDemoInstall
Socket

@egjs/flicking

Package Overview
Dependencies
Maintainers
9
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@egjs/flicking

Everyday 30 million people experience. It's reliable, flexible and extendable carousel.

  • 3.9.3
  • latest-3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
33K
decreased by-0.85%
Maintainers
9
Weekly downloads
Β 
Created
Source

Flicking Logo
@egjs/flicking

version npm bundle size (scoped) Travis (.org) Coveralls github GitHub commit activity npm downloads per month GitHub contributors GitHub Angular React Vue Vue DeepScan grade

Demo / Documentation / Other components

Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
πŸ“±πŸ’»πŸ–₯

Translations: πŸ‡ΊπŸ‡Έ πŸ‡°πŸ‡·

Supported Frameworks
AngularJSΒ Β  ReactΒ Β  Vue.jsΒ Β  Preact


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

  • Easy-to-use and performant infinite carousel(slider).
    • You can use 3 options(renderOnlyVisible, isEqualsSize, isConstantSize) to make your carousel more performant.
    • Check the effect! β‡’ https://www.youtube.com/watch?v=R-DKq-fqeSI
  • Every options are compatible with each others.
    • Except for mutual exclusive options (like circular and bound).
  • Provides various scroll movement types that you can choose.
  • Ready-to-use plugins you can grab right away.
  • Supports all major frameworks(Angular, React, Vue).

βš™οΈ Installation

npm
$ npm install --save @egjs/flicking
CDN

πŸƒ Quick Start

Typescript
import Flicking from "@egjs/flicking";

const flicking = new Flicking("#el", { circular: true });
Browser
<script src="https://cdnjs.cloudflare.com/ajax/libs/egjs-flicking/3.x.x/flicking.js"></script>
var flicking = new eg.Flicking("#el", { circular: true });
DOM Structure

⚠️ NOTICE: Flicking requires minimal structure to initialize properly.

As Flicking applies position: absolute for panels, either wrapper or panel should have fixed height value.

βœ…

<div id="wrapper" style="height: 120px">
  <div class="panel"></div>
  <div class="panel"></div>
  <div class="panel"></div>
</div>
<div id="wrapper">
  <!-- Least one of them should have fixed height -->
  <div class="panel" style="height: 120px;"></div>
  <div class="panel"></div>
  <div class="panel"></div>
</div>

❌

<div id="wrapper"> <!-- Wrapper height is dependent on panel height -->
  <div class="panel" style="height: 100%;"></div>
  <div class="panel" style="height: 100%;"></div>
  <div class="panel" style="height: 100%;"></div>
</div>
Collect statistics

Flicking applies Google Analytics (GA) to collect which features are useful to users. For example, the use of the freeScroll option, or the value of the gap option, and so on. Statistics also DO NOT contain any information that can identify an individual. Statistics on the usage will serve as basis for making better products. To disable GA, set the collectStatistics option to false as follows:

var flicking = new eg.Flicking("#el", { collectStatistics: false });

πŸ“¦ Packages

PackageVersionDescription
@egjs/flicking-pluginsversionReadymade effects for your carousel
@egjs/ngx-flickingversionAngular Angular port of @egjs/flicking
@egjs/react-flickingversionReact React port of @egjs/flicking
@egjs/vue-flickingversionVue.js Vue.js port of @egjs/flicking
@egjs/preact-flickingversionPreact Preact port of @egjs/flicking

🌐 Supported Browsers

IEChromeFirefoxSafariiOSAndroid
10+LatestLatestLatest7+4+

πŸ“Ό Demos

Check our Demos.

πŸ“– Documentation

See Documentation page.

πŸ™Œ Contributing

See CONTRIBUTING.md.

πŸ“ Feedback

Please file an Issue.

πŸ›£οΈ Roadmap

See our Roadmap.

πŸ“œ 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.

Β Β Β Β Β Β 

FAQs

Package last updated on 05 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc