我试图让下面的代码从bottom:0平滑地过渡到top:0。我知道转换只适用于相同的属性,但我现在不知道如何平滑地完成它。下面是有问题的代码:
.portCard * {
max-width: 100%;
transition: .35s .35s transform cubic-bezier(.1,.72,.4,.97);
}
.portCard {
position: relative;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
max-width: 250px;
}
.portCardContent {
position: absolute;
left: 50%;
transform: translate(-50%, 0px);
width: 100%;
text-align: center;
background-color: #86B971;
z-index: 1;
bottom: 0;
height: auto;
}
.portCard:hover .portCardContent {
top: 0;
bottom: auto;
}
.portCardTitle {
font-size: 1.2em;
font-weight: 700;
}
.portCardText {
font-size: .8em;
}
.portCardLink {
display: none;
}
个字符
1条答案
按热度按时间brccelvz1#
将合并顶部(或底部)与translate结合起来。在您的情况下,使用
bottom: 100%
,这将使您的项目脱离容器,但您使用translatey(100%)
纠正了这一点个字符