@egjs/flicking
Demo / Documentation / Other components
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
π±π»π₯
Translations: πΊπΈ π°π·
π±οΈ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
- You can use 3 options(
- Every options are compatible with each others.
- Except for mutual exclusive options (like
circular
andbound
).
- Except for mutual exclusive options (like
- 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
- jsDelivr: https://cdn.jsdelivr.net/npm/@egjs/flicking/dist/
- unpkg: https://unpkg.com/@egjs/flicking/dist/
- cdnjs: https://cdnjs.com/libraries/egjs-flicking
π 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
Package | Version | Description |
---|---|---|
@egjs/flicking-plugins | Readymade effects for your carousel | |
@egjs/ngx-flicking | Angular port of @egjs/flicking | |
@egjs/react-flicking | React port of @egjs/flicking | |
@egjs/vue-flicking | Vue.js port of @egjs/flicking | |
@egjs/preact-flicking | Preact port of @egjs/flicking |
π Supported Browsers
10+ | Latest | Latest | Latest | 7+ | 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.