gpt4 book ai didi

css - 简单的 CSS 反向过渡

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

这里是 CSS 初学者

img {
top: 0;
transition: all 0.5s ease-out;
}
img:hover {
position: relative;
top: -5px;
}

悬停时,此过渡效果很好。但是当您再次将鼠标移开时没有任何效果,“反向”转换是即时的。如何在反向转换上也达到 0.5s?

最佳答案

只需将 position: relative:hover 规则移动到 img 规则。未悬停时,img 元素未相对定位。 top 属性不会对静态定位的元素执行任何操作。

img {
position: relative;
top: 0;
transition: all 0.5s ease-out;
}
img:hover {
top: -5px;
}

关于css - 简单的 CSS 反向过渡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33638037/

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