获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 微信小程序的swipe 在点击切换时,如果只有两个swipe-item,点击切换到方向不正常?
三个swipe-item是正常的,两个的话我看wipe-item的transform没有动态改变,从第一个点击向右按钮切换到第二个,切换方向向右,,再点击回到第一个,切换方向是向左切换的,怎么能回到第一个时方向也向右? 两个按钮的点击事件 向前,向后按钮的点击事件,我是通过动态改变current参数的值 prevClick() { const num = this.current > 0 ? this.current - 1 : this.option.length - 1; this.current = num; }, nextCLick() { const num = this.current < this.option.length - 1 ? this.current + 1 : 0; this.current = num; }, 有没有大神看下能不能有更好的方法? [图片]
2021-11-23 - 小程序地图怎么点击一个按钮移动到固定位置?
map地图上一个按钮,点击移动到某个地点,这个地点的经纬度是知道的 moveToLocation不起作用,只能移动到自己的位置
2019-01-23