📅  最后修改于: 2023-12-03 15:31:13.404000             🧑  作者: Mango
在 CSS3 中,我们可以通过 animation 注释来实现动画效果。animationFillMode 属性定义了一个动画周期中的状态,默认情况下,动画周期之外的时间是无状态的,这意味着您对任何元素的更改都将在动画结束时立即回到原始条件。但是,animationFillMode 属性可用于指定在动画开始之前或结束之后元素应处于的状态。
/* 单个值语法 */
animation-fill-mode: none|forwards|backwards|both|initial|inherit;
/* 多值语法 */
animation-fill-mode: value1 value2 ...;
其中:
<div class="box"></div>
.box{
width: 100px;
height: 100px;
background-color: red;
animation: move 3s forwards;
animation-fill-mode: forwards;
}
@keyframes move {
from {
transform: translateX(0);
}
to {
transform: translateX(600px);
}
}
在上面的示例中,我们使用 animation-fill-mode 属性将动画完成后的最终状态设置为保留状态,即 animation-fill-mode: forwards;。这意味着元素将在动画结束后保持在其新的位置上。
animationFillMode 属性定义了一个动画周期中的状态,包括动画开始前和结束后。它可用于指定在动画开始之前或结束之后元素应处于的状态。默认情况下,动画周期之外的时间是无状态的。使用 animation-fill-mode 属性可以让动画更加生动,使用户体验更好。