uniapp 滚动到页面最底部

2021-11-02  本文已影响0人  jing_bao
uni.createSelectorQuery().select(".chat_list").boundingClientRect((res)=>{
    console.log(res,'---res')
    let newbottom = res.bottom+res.height
    uni.pageScrollTo({
        duration: 100,// 过渡时间
        scrollTop: newbottom+1000,// 滚动的实际距离
    })
}).exec();
上一篇下一篇

猜你喜欢

热点阅读