您的当前位置:首页正文

小程序uni-app页面高度自适应(简单)

2024-11-06 来源:个人技术集锦

小程序uni-app页面高度自适应

小程序坑多,还是用uni-app来写小程序好点

附:

onReady: function () {
		const query = uni.createSelectorQuery().in(this);
		query.select('#d').boundingClientRect(data => {
			this.home_page_height=data.top*2;
		}).exec();
    }
显示全文