gpt4 book ai didi

javascript - 通过纯 CSS 在超时后渲染一个组件

转载 作者:行者123 更新时间:2023-11-30 11:25:50 25 4
gpt4 key购买 nike

我知道有一种方法可以实现组件在给定超时后呈现的效果,但我想通过过渡在纯 CSS 中实现。问题是,在查看使用 css 转换的教程时 - 您通常必须将鼠标悬停在元素上才能触发动画 - 但就我而言 - 我只是希望元素在渲染 2 秒后变得可见。我怎样才能做到这一点?

最佳答案

动画可以提供帮助:

p {
opacity:0;
animation:show 5s 2s forwards;
}
@keyframes show {
to {opacity:1}
}
<p>see me</p>

参见 https://developer.mozilla.org/en-US/docs/Web/CSS/animation-fill-mode

The animation-fill-mode CSS property specifies how a CSS animation should apply styles to its target before and after its execution.

关于javascript - 通过纯 CSS 在超时后渲染一个组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48072467/

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