gpt4 book ai didi

html - 动画绝对div

转载 作者:行者123 更新时间:2023-11-28 08:21:14 24 4
gpt4 key购买 nike

在相对内部有一个绝对 div,我需要那个绝对 div 在容器悬停时跳出。

基本的 html 应该是

<div class="container">
<div class="animated t50">See more</div>
</div>

CSS

.container {
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
}
.animated {
position: absolute;
bottom: -5%;
}
.t50 {
transition :0.5s;
/*and further on with all the prefixes*/
}
.container:hover > .animated {
bottom: 5%;
}

所以,显然有一些我不知道的东西......

最佳答案

您必须在父容器上设置overflow: visible

这是一个关于 JS Bin 的例子:http://jsbin.com/luhekatale/1/

关于html - 动画绝对div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28752963/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com