小程序模板:专业的小程序模板与静态模板分享平台
小程序
教程
搜索
当前位置 : 首页> 小程序教程> 微信小程序底部导航自定义tabBar,中间圆形凸起

微信小程序底部导航自定义tabBar,中间圆形凸起

在微信小程序中实现自定义的 TabBar,并在中间添加一个圆形凸起的按钮,你可以参考以下代码示例来实现:

1. 首先,创建一个自定义的底部 TabBar 组件,并在其中添加一个圆形凸起按钮。

      图标    首页        图标    分类        +        图标    购物车        图标    我的
/* components/tabBar/tabBar.wxss */
.tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100rpx;
  background-color: #fff;
  box-shadow: 0 0 10rpx 0rpx #e5e5e5;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab-icon {
  font-size: 36rpx;
  color: #666;
}

.tab-text {
  font-size: 24rpx;
  color: #666;
}

.circle-button {
  position: absolute;
  top: -40rpx;
  left: calc(50% - 50rpx);
  width: 100rpx;
  height: 100rpx;
  border-radius: 50rpx;
  background-color: #f00;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-button-icon {
  font-size: 48rpx;
  color: #fff;
}


2. 使用自定义的 TabBar 组件,并在页面的 json 文件中进行配置:

{
  "usingComponents": {
    "tab-bar": "/components/tabBar/tabBar"
  }
}


3. 在页面的 wxml 文件中使用自定义的 TabBar 组件

  


联系客服 意见反馈

签到成功!

已连续签到1天,签到3天将获得积分VIP1天

知道了