Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@egjs/vue-flicking
Advanced tools
A module used to implement flicking interactions. With this module, you can make flicking gestures, which are ways to navigate left and right to move between panels arranged side by side.
Vue wrapper of @egjs/flicking
Demo / Documentation / Other components
npm install --save @egjs/vue-flicking
camelCased
event names became kebab-case
moveEnd
=> move-end
append()
, remove()
, ...import VueFlicking from "@egjs/vue-flicking";
Vue.use(VueFlicking);
import { Flicking } from "@egjs/vue-flicking";
export default {
components: {
Flicking: Flicking,
}
}
<template>
<flicking
:options="{ gap: 10, moveType='freeScroll' }"
:tag="'div'"
:plugins="plugins"
@need-panel="e => {
// ADD PANELS
}"
@move-end="e => {
// HANDLE INDEX CHANGE
}"
>
<div>CONTENTS OF PANEL 0</div>
<div>CONTENTS OF PANEL 1</div>
<div>CONTENTS OF PANEL 2</div>
</flicking>
</template>
<script>
import { Component, Vue } from "vue-property-decorator";
import { Fade, AutoPlay } from "@egjs/flicking-plugins";
@Component({})
export default class DemoClass extends Vue {
plugins = [new Fade(), new AutoPlay(2000, "NEXT")];
}
</script>
Check GUIDE_SSR.md
You can use all plugins just like native @egjs/flicking.
Check @egjs/flicking-plugins for readymade effects we're providing.
See demo/
for more implementation examples.
See CONTRIBUTING.md
Please file an Issue with label "Vue".
@egjs/flicking is released under the MIT license.
FAQs
Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
The npm package @egjs/vue-flicking receives a total of 4,028 weekly downloads. As such, @egjs/vue-flicking popularity was classified as popular.
We found that @egjs/vue-flicking demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.