作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
.car1
仅在使用 @keyframes
的 from
和 to
时移动,但在使用时不移动%
。谁能解释为什么会这样?
.car1 {
animation: car1 2s 2 forwards;
position: absolute;
}
@keyframes car1 {
from {transform: translateX(550px)}
to {transform: translateX(-550px)}
}
.car2 {
position: absolute;
top: 0;
animation: car2 2s 2 forwards;
}
@keyframes car2 {
0% {top: 30px}
25% {top: 130px}
40% {top: 230px}
75% {top: 330px}
}
<div class="car1">Car1</div>
<div class="car2">Car2</div>
最佳答案
.car1 {
animation: car1 2s 2 forwards;
position: absolute;
}
@keyframes car1 {
0% {transform: translateX(550px)}
100% {transform: translateX(-550px)}
}
.car2 {
position: absolute;
top: 0;
animation: car2 2s 2 forwards;
}
@keyframes car2 {
0% {top: 30px}
25% {top: 130px}
40% {top: 230px}
75% {top: 330px}
}
<div class="car1">Car1</div>
<div class="car2">Car2</div>
关于html - @keyframes 不适用于 %,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50466316/
我是一名优秀的程序员,十分优秀!