pageScrollTo 1.0.0+
滚动页面到目标位置
输入
继承标准对象输入,扩展属性描述:
名称 | 数据类型 | 属性 | 默认值 | 描述 |
---|---|---|---|---|
scrollTop | number | required | N/A | 位置,单位px |
duration | number | optional | 200 | 执行时长,单位ms |
输出
各callback参数均无额外属性
代码示例
tt.pageScrollTo({
scrollTop: 3008,
duration: 1000,
success (res) {
console.log(`pageScrollTo调用成功`);
},
fail (res) {
console.log(`pageScrollTo调用失败`);
}
});
原文: https://developer.toutiao.com/docs/api/pageScrollTo.html