-
Hi, just discover flicking, really exciting, Please can I implement this feature with flicking-v4, as I have tried various combination of different available options. |
Beta Was this translation helpful? Give feedback.
Answered by
WoodNeck
Oct 18, 2021
Replies: 1 comment
-
Hello @eddiedane! import { MOVE_TYPE } from "@egjs/flicking";
const flicking = new Flicking("#el", {
// Detailed
moveType: [MOVE_TYPE.STRICT, { count: 1 }],
// Simplified
moveType: MOVE_TYPE.STRICT,
moveType: "strict"
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
eddiedane
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @eddiedane!
Try using
moveType: "strict"
:)