We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the problem that the arrows do not go by themselves, one step forward or back. Also, the arrows can be dragged so that it can move. (see video)
Documentation I followed: https://naver.github.io/egjs-flicking/Plugins
<script setup lang="ts"> import Flicking from "@egjs/vue3-flicking"; import {Arrow} from "@egjs/flicking-plugins"; const plugins = ref([new Arrow()]); function test() { console.log('button works') } </script>
<template> <Flicking ref="swiper" :plugins="plugins" :options="{ circular: true }" class="w-full h-full" > <div class="h-full w-full flex bg-cover rounded-md" :key="img.id" v-for="img in resort.media" :style="`background: url('${img.original_url}'); background-size: cover;`" > </div> <template #viewport> <span @click="test" class="flicking-arrow-prev"></span> <span class="flicking-arrow-next"></span> </template> </Flicking> </template>
<style scoped> @import url("@egjs/vue3-flicking/dist/flicking.css"); @import url("@egjs/flicking-plugins/dist/flicking-plugins.css"); @import url("@egjs/flicking-plugins/dist/arrow.css"); </style>
The text was updated successfully, but these errors were encountered:
Hello @NIFO43. We apologize for the late response. We created a demo to reproduce the issue you left, but it seems to be working fine.
There are two things to check in your implementation.
We'd like to try to reproduce this issue. Can we check a demo or repo that reproduces this issue?
Sorry, something went wrong.
malangfox
No branches or pull requests
Description
I have the problem that the arrows do not go by themselves, one step forward or back. Also, the arrows can be dragged so that it can move. (see video)
Documentation I followed: https://naver.github.io/egjs-flicking/Plugins
Steps to check or reproduce
Video
Bildschirmaufnahme.2023-09-29.um.11.33.05.mov
The text was updated successfully, but these errors were encountered: