gpt4 book ai didi

CSS 动画没有无缝运行

转载 作者:行者123 更新时间:2023-11-27 23:23:01 26 4
gpt4 key购买 nike

我有一个简单的动画,我希望一个对象无缝上下 float 2rem。但有时当它到达动画的顶部/底部位置时,它会暂停一两秒钟。这是为什么?我该怎么做才能无缝且不间断地进行直接更改?


.toBeAnimated{
position: fixed;
top: 60%;
left: 80%;
width: 100px;
height: 100px;

background-image: url(./static/image.svg);
background-position: center;
background-repeat: no-repeat;
background-size: contain;

animation-name: floatingUpAndDown;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-timing-function: ease;
}

@keyframes floatingUpAndDown {
0%, 100% {
transform: translate3d(0, 0, 0);
}
50% {
transform: translate3d(0, -2rem, 0);
}
}

最佳答案

使用animation-timing-functionlinear而不是ease。希望它能奏效。

关于CSS 动画没有无缝运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57912865/

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