随笔 - 57  文章 - 3  评论 - 1  阅读 - 30501

【uni.app/微信小程序】 添加与胶囊平齐的盒子

添加与胶囊平齐的盒子

image

<template>
    <view class="search_box" :style="'margin-top:'+searchBarTop+'px; height:'+searchBarHeight+'px'">
        您好
    </view>
</template>
<script>
	export default {
		data() {
			return {
				searchBarTop:0,
				searchBarHeight:0,
			};
		},
		onLoad() {
            //方法文档
            // https://uniapp.dcloud.net.cn/api/ui/menuButton.html#getmenubuttonboundingclientrect
			let menuButtonInfo = uni.getMenuButtonBoundingClientRect();
			this.searchBarTop = menuButtonInfo.top;
			this.searchBarHeight = menuButtonInfo.height;
		},
	};
</script>

<style>
	
	.search_box{
		background-color: blue;
	}
</style>

getMenuButtonBoundingClientRect() | uni-app官网 (dcloud.net.cn)

posted on   yunkuang  阅读(188)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2021-05-08 MySql错误:ERROR 1292 (22007): Incorrect datetime value: '2007' for column 'b_date' at row 1
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示