uni.createSelectorQuery().select('.your-selector') .boundingClientRect(function(rect){ console.log(rect.top);// 元素上边距离屏幕顶部的高度}).exec();
uniapp 获取当前屏幕的高度 onLoad() { uni.getSystemInfo({ success: (res)=> { let height=res.windowHeight-uni.upx2px(100) //获取系统信息,可使用窗口的高度 this.swiperheight=height; } }); }, 3. 4. 5. 6. 7. 8.
let height=res.windowHeight-uni.upx2px(100)//获取系统信息,可使用窗口的高度this.swiperheight=height; } }); },
uniapp 获取当前屏幕的高度 onLoad() { uni.getSystemInfo({ success: (res)=> { let height=res.windowHeight-uni.upx2px(100) //获取系统信息,可使用窗口的高度 this.swiperheight=height; } }); }, 3. 4. 5. 6. 7. 8.