收藏
回答

wx.pageScrollTo如何使用offsetTop?

wx.pageScrollTo(Object object)

offsetTop. number否偏移距离,需要和 selector 参数搭配使用,可以滚动到 selector 加偏移距离的位置,单位 px

这个 offsetTop 如何使用,有demo吗,兄弟们?

回答关注问题邀请回答
收藏

1 个回答

  • 微盟
    微盟
    2023-05-19

    你好,offsetTop 需要指定选择器,滚动到 selector 选择器,对应偏移距离的位置,单位 px

    selector类似于 CSS 的选择器,但仅支持下列语法。

    • ID选择器:#the-id
    • class选择器(可以连续指定多个):.a-class.another-class
    • 子元素选择器:.the-parent > .the-child
    • 后代选择器:.the-ancestor .the-descendant
    • 跨自定义组件的后代选择器:.the-ancestor >>> .the-descendant
    • 多选择器的并集:#a-node, .some-other-nodes

    示例代码:

    // dom  
    <view id="the-id"></view>
    
    // js
    wx.pageScrollTo({
        selector: "#the-id",
        offsetTop: 10
    });
    


    参考文档:https://developers.weixin.qq.com/miniprogram/dev/api/ui/scroll/wx.pageScrollTo.html

    2023-05-19
    有用
    回复
登录 后发表内容