我怎样才能制作这个形状的按钮组?

Posted

技术标签:

【中文标题】我怎样才能制作这个形状的按钮组?【英文标题】:How can I'm able to make this shaped button group? 【发布时间】:2022-01-17 03:36:35 【问题描述】:

我正在努力制作一个在活动路径上改变背景的组按钮,它可能看起来像这样

我尝试了一种方法,但遇到了一些边界实现错误,该主体是否有更好的方法来制作这些按钮组? https://codesandbox.io/s/quizzical-bohr-uczl0?file=/src/App.js

【问题讨论】:

【参考方案1】:

使用 flex 是行不通的。我的想法是在彼此上有一个前箭头和一个后箭头。底部箭头向右1px:

.menu 
  background: #efefef;

.item 
  width: 140px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #000;
  background: #efefef;
  position: relative;
  display: inline-block;
  float: left;
  padding-left: 10px;
  box-sizing: border-box;

.item.active
    background-color: #0172B6;
    color: #fff;


.item:before
    content: '';
    position: absolute;
    right: -25px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid #efefef;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    z-index: 1  



.item.active:before
    content: '';
    position: absolute;
    right: -25px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid #0172B6;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;  
    z-index: 2

.item.active:after
    content: '';
    position: absolute;
    right: -26px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid #efefef;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    z-index: 1  

.menu .item:last-of-type:before,
.menu .item.active:last-of-type:before,
.menu .item.active:last-of-type:after
    display: none   
<div class="menu">
    <div class="item">Fabric</div>
    <div class="item active">Style</div>
    <div class="item">Contrast</div>
</div>

【讨论】:

如果只有 2 选项卡处于活动状态? 这可能吗?这是一个面包屑菜单,对吧? 是的,有可能 我已经更新了我的代码。请检查。 非常感谢您节省了我的时间...

以上是关于我怎样才能制作这个形状的按钮组?的主要内容,如果未能解决你的问题,请参考以下文章

如何在android中设置按钮样式

我怎样才能更好地将这个按钮与中间的内容对齐?对我来说似乎偏离了中心:

我怎样才能使这个工作与 UIScrollView?

我怎样才能转到我以前的 Fl::window?

android有带箭头的按钮控件吗?

如何制作带有单独按钮的颜色选择器?