【发布时间】:2020-11-05 19:37:35
【问题描述】:
【问题讨论】:
【问题讨论】:
对于“圆形”活动背景,您在ul 上使用:after 伪元素。为什么要这么做 ?你想为它制作动画(将它从一个活动的li 移动到另一个)?
如果没有,只需添加 'after' 或为活动元素添加背景。
请参阅 Stackblitz 并告诉我您是否正在寻找。
附:选项卡有效,所以我不知道您所说的“按钮点击没有发生”是什么意思。
【讨论】:
tab-slider--trigger 上的过渡效果@
tab-slider--trigger 的过渡? :)
你错了两个 css 属性我改了:
.tab-slider--trigger.active {
color: #fff;
background-color: #345F90; // add only when active
}
.tab-slider--trigger {
background-color:white; // add when is not active white
}
.tab-slider--tabs:after {
background: #345F90; // delete because is wrong
}
完整的css文件:
.container {
width: 75%;
margin: 3rem auto;
}
h2 {
color: #345F90;
font-size: 24px;
line-height: 1.25;
font-family: "Roboto Slab", serif;
margin-top: 20px;
margin-bottom: 20px;
}
.tab-slider--nav {
width: 100%;
float: left;
margin-bottom: 20px;
}
.tab-slider--tabs {
display: block;
float: left;
margin: 0;
padding: 0;
list-style: none;
position: relative;
border-radius: 35px;
overflow: hidden;
background: #fff;
height: 35px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tab-slider--tabs:after {
content: "";
width: 50%;
height: 100%;
position: absolute;
top: 0;
left: 0;
-webkit-transition: all 250ms ease-in-out;
transition: all 250ms ease-in-out;
border-radius: 35px;
}
.tab-slider--tabs.slide:after {
left: 50%;
}
.tab-slider--trigger {
font-size: 12px;
line-height: 1;
font-weight: bold;
color: #345F90;
background-color: rgb(255, 255, 255);
text-transform: uppercase;
text-align: center;
padding: 11px 20px;
position: relative;
z-index: 2;
cursor: pointer;
display: inline-block;
-webkit-transition: color 250ms ease-in-out;
transition: color 250ms ease-in-out;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tab-slider--trigger.active {
color: #fff;
background-color: #345F90;
}
.tab-slider--body {
margin-bottom: 20px;
}
【讨论】: