gpt4 book ai didi

css - 恒定动画速度 CSS

转载 作者:太空宇宙 更新时间:2023-11-03 21:25:59 25 4
gpt4 key购买 nike

我有一个动画,我想让动画在所有过渡中都做同样的 Action ,在我所拥有的动画开始时很快,几乎在结束时开始放慢速度。

#tableNews {
overflow: hidden;
margin-right: 5%;
width:90%;
position: relative;
-webkit-animation: mymove 15s infinite; /* Chrome, Safari, Opera */
animation: mymove 15s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
from {top: 60px;}
to {top: -200px;}
}

@keyframes mymove {
from {top: 60px;}
to {top: -200px;}
}
<table id="tableNews" class="TableList" border="0" width="100%" style="overflow:hidden;">
<tbody>
<tr class="new-separator">
<td>
<table>
<tr>
<td><a href="#"></a><hr></td>
</tr>

</table>
</td>
</tr>
</tbody>
</table>

最佳答案

我想这让轻松了。如果你给一个选项 linear,这是动画的 timing function ,它以恒定的速度工作,没有延迟。让我们这样做:

#tableNews {
overflow: hidden;
margin-right: 5%;
width:90%;
position: relative;
-webkit-animation: mymove 15s linear infinite; /* Chrome, Safari, Opera */
animation: mymove 15s linear infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
from {top: 60px;}
to {top: -200px;}
}

@keyframes mymove {
from {top: 60px;}
to {top: -200px;}
}
<div id="tableNews">Hi</div>

关于css - 恒定动画速度 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32772654/

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