启用 scroll-view 增强特性,使用scrollViewContext.scrollTo接口控制scroll-view滑动到指定位置。滑动效果正常,但是duration参数无效。
wx.createSelectorQuery()
.select('#scroll-test')
.node()
.exec((res) => {
const scrollView = res[0].node;
// scrollView.scrollEnabled = false;
scrollView.scrollTo({
animated: true,
duration: 1000,
top: 500
})
})