Taro+react开发(42)tab栏样式

.discover-tabs{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  .tab {
    height: 80px;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #F3F3F3;
    border-top: 2px solid #F3F3F3;
    font-size: 30px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: $neutrals-color-icon;
  }
   <View className="discover-tabs">
          {tabs.map(item => (
            <View
              key={item.type}
              className={classNames("tab", { active: curType === item.type })}
              onClick={() => {
                this.changeTab(item.type);
              }}
            >
              {item.name}
            </View>
          ))}
        </View>

上一篇:42.


下一篇:剑指 Offer 42. 连续子数组的最大和