美文网首页LOVETOO-前端编程
uni.createSelectorQuery() 巨坑uni获

uni.createSelectorQuery() 巨坑uni获

作者: 车文烨 | 来源:发表于2021-02-13 22:26 被阅读0次

    uni获取元素离顶部距离

        uni
          .createSelectorQuery()
          .in(this)
          .select(".container .cat-box")
          .boundingClientRect((data) => {
            this.pageScroll = data.top;
          })
          .exec();
    

    使用这个方法获取距离时 有两个条件:
    1、在onReady或者mounted中使用;
    2、保证前面的图片高度设置好了,因为uni-image有个默认高度为 height: 240px ,容易造成偏差;

    相关文章

      网友评论

        本文标题:uni.createSelectorQuery() 巨坑uni获

        本文链接:https://www.haomeiwen.com/subject/yieexltx.html