常见场景为ui小姐姐为页面顶部设计了漂亮的图片例如我们的
好多小伙伴会设置隐藏系统的标题栏,但是自定义标题栏因为安卓和ios手机的兼容性问题,经常出现有的手机上标题和右侧按钮不能水平对齐的问题,接下来我用一种简单的方法来处理这兼容性问题
进入目标页面的page.json 设置navigationStyle
{
"navigationStyle": "custom",
}
这一步很简单,网上一大堆教程,接下来上干货,先熟悉下几个概念
接下来我们主要用胶囊按钮的高度和top来处理我们自定义标题栏的问题
自定义标题栏,需要知道标题栏的高度和定位、页面主题的顶部的padding-top,计算方式如下
自定义标题:定位
top:胶囊top
height: 胶囊height
页面顶部空白高度
页面paddingTop = 胶囊top + 胶囊height
框架:taro
理解思路就好,用哪个小程序框架都一样,删除了无用的代码
export default {
// 微信右上角胶囊按钮的参数
jnbtn() {
let jn = Taro.getMenuButtonBoundingClientRect();
let obj = {
width: jn.width,
height: jn.height,
top: jn.top,
pageTop: jn.top + jn.height
}
return obj;
},
import { useCallback,useState } from "react";
import { View, Text, Button, Image } from "@tarojs/components";
import { useEnv, useNavigationBar, useModal, useToast } from "taro-hooks";
import './commission.less'
import { AtIcon } from 'taro-ui'
import util from '../../util/util'
import MyTitle from '../../components/myTitle'
const Index = () => {
let jnbtn = util.jnbtn();
return (
<View className="page commipage relative">
// 自定义标题栏
<MyTitle title='佣金' back={true}/>
// 设置页面主题上边的paddingTop
<View className="pagetop" style={{ paddingTop: `${jnbtn.pageTop}px` }}>
<Image className='yingbi' src={`${util.oss}/coin.svg`} mode='widthFix'></Image>
</View>
</View>
);
};
export default Index;
高级程序员要经常封装组件,方便复用,哈哈
import { View } from "@tarojs/components";
import './index.less'
import { AtIcon } from 'taro-ui'
import util from '../../util/util'
const Index = (props) => {
let jnbtn = util.jnbtn();
const {title='', back='' }=props;
return (
// 重点
<View className="mytitlew center-v"
style={{ top: `${jnbtn.top}px`, height: `${jnbtn.height}px` }}>
{back && <View className="tback center-v"> <AtIcon value='chevron-left' size='20' color='#333'></AtIcon> </View>}
{title && <View className="title center">{title}</View>}
</View>
);
};
export default Index;
至此完美解决小程序自定义标题栏的兼容性问题,亲测很实用。
创作不易,有帮到小伙伴出坑请打赏几毛钱,蟹蟹