- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用swiper显示一些项目。
我只想在单击按钮时滑动到下一个项目,但允许手动滑动到上一个项目。
这些是与滑动相关的选项:
allowSwipeToPrev: Set to false to disable swiping to previous slide direction (to left or top)
allowSwipeToNext: Set to false to disable swiping to next slide direction (to right or bottom)
swipeHandler: String with CSS selector or HTML element of the container with pagination that will work as only available handler for swiping
nextButton: String with CSS selector or HTML element of the element that will work like "next" button after click on it
prevButton: String with CSS selector or HTML element of the element that will work like "prev" button after click on it
如果我使用 swipeHandler
作为按钮选择器,它会按预期工作,只是我无法滑动到上一项,因为它仅作为可用处理程序滑动。无论我使用什么其他选项。
如果我将 allowSwipeToNext
设置为 false 并使用 nextButton
而不是 swipeHandler
,即使我单击,它也不会滑动到下一个项目下一步按钮。
所以问题是:如何实现仅通过按钮滑动到下一个项目以及仅手动滑动到上一个项目?
最佳答案
有同样的问题并解决如下:
var swiper = new Swiper('.swiper-container', {
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
spaceBetween: 30,
});
// Locks the swipe to next by default
swiper.lockSwipeToNext();
$("#button_id").click(function(e){
e.preventDefault();
// Unlocks the swipe to next when the button is clicked
swiper.unlockSwipeToNext();
// Swipes to the next slide
swiper.slideNext();
// Locks the swipe to next again after moving to the next slide
swiper.lockSwipeToNext();
});
希望对你有帮助!
关于javascript - 刷卡器 : Swipe to next item only with a button and to previous items manually,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40653084/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!