发现一个曲线救国的方法,禁用掉swiper-item 的所有滑动,然后自己写滑动逻辑判断上下滑动,亲测管用 <swiper-item catchtouchmove="handleTouchMove" > Page({ // 其他页面配置... startY: 0, // 记录初始触摸点的Y坐标 handleTouchMove: function (e) { // 获取触摸点的坐标信息 const touch = e.touches[0]; // 如果 startY 为 0,表示是初始触摸,记录初始触摸点的Y坐标 if (this.startY === 0) { this.startY = touch.clientY; return; } // 计算Y坐标的变化 const deltaY = touch.clientY - this.startY; // 判断是上滑还是下滑 if (deltaY < 0) { console.log('上滑'); } else if (deltaY > 0) { console.log('下滑'); } // 重置 startY 为 0,以便下一次触摸事件 this.startY = 0; }, // 其他事件处理函数... })
swiper怎么取消回弹效果?swiper组件切换到第一个或者最后一个会有回弹的效果(和ios页面上拉下拉回弹效果差不多),这种回弹可以取消吗
2023-11-27顶!d=====( ̄▽ ̄*)b
微信小程序 swiper 组件不能设置 bounces 属性来取消弹簧效果吗?怎么取消这个效果希望 swiper 组件能出一个 scroll-view 的 bounces 属性,用于取消 iOS 滑动的弹簧效果 https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html
2023-11-24