You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, I want to express my appreciation for developing such a wonderful library. I'm really enjoying using Splide.
While everything is working well overall, I’m encountering one issue that I haven’t been able to resolve. I need a slider that functions like a normal browser scroll, allowing the user to freely move between slides without snapping to the edges or aligning automatically.
Based on the documentation, I believe this should be achieved with the settings snap: false and drag: 'free'. However, the slider still snaps to the nearest edge.
Could you please help me understand what might be going wrong?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello Splide Team,
First, I want to express my appreciation for developing such a wonderful library. I'm really enjoying using Splide.
While everything is working well overall, I’m encountering one issue that I haven’t been able to resolve. I need a slider that functions like a normal browser scroll, allowing the user to freely move between slides without snapping to the edges or aligning automatically.
Based on the documentation, I believe this should be achieved with the settings snap: false and drag: 'free'. However, the slider still snaps to the nearest edge.
Could you please help me understand what might be going wrong?
Thank you for your assistance.
I use nuxt version 2
My Options : {
direction: 'rtl',
perPage: 3,
drag: 'free',
snap: false
}
My Version : "@splidejs/vue-splide": "^0.3.5"
plugin :
import Vue from 'vue';
import VueSplide from '@splidejs/vue-splide';
import '@splidejs/splide/dist/css/themes/splide-default.min.css';
Vue.use(VueSplide);
nuxt.config.js file : { src: "~/plugins/vue-splide.js", ssr: false }
Beta Was this translation helpful? Give feedback.
All reactions