0 comments (0 comments)0 reactions (0 reactions)0 assignees (0 assignees)HTML950 stars (950 stars)201 forks (201 forks)batch import
help wanted
Description
Iis there a possibility to diable the up- and down-swipe?
Contributor guide
- Tech stack
- vuejavascript
- Domain
- frontend
- Issue type
- feature
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 2
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- under 1 hour
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- clear
- Prerequisites
- basic Vue.js knowledge
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 70
- Research direction
- The issue requests an option to disable up and down swipe gestures in the vue carousel 3d component. Start by examining the component's event handling, likely in the main Vue file (e.g., Carousel3d.vue). Look for touch or swipe event listeners (touchstart, touchmove, touchend). Implement a new prop, e.g., `disableVerticalSwipe`, and conditionally prevent default or ignore vertical movements. Test locally with a simple example.