disable draggable for 1 second in flickticky slider
To disable the draggable feature in the Flickity slider for 1 second, you can use the draggable option provided by Flickity along with a setTimeout function. Here's an example code snippet:
// Initialize Flickity slider
var flkty = new Flickity('.slider', {
// other options...
draggable: true, // set to true by default
});
// Disable draggable for 1 second
flkty.options.draggable = false;
setTimeout(function() {
flkty.options.draggable = true;
}, 1000);
In this code, we initialize the Flickity slider with the draggable option set to true by default. Then, we disable the draggable feature by setting flkty.options.draggable to false. After 1 second, using the setTimeout function, we enable the draggable feature again by setting flkty.options.draggable back to true
原文地址: https://www.cveoy.top/t/topic/h7vx 著作权归作者所有。请勿转载和采集!