gpt4 book ai didi

具有多个属性的 CSS 关键帧动画

转载 作者:太空宇宙 更新时间:2023-11-04 01:04:12 24 4
gpt4 key购买 nike

我有一个容器 div,里面有一个对象。我可以为它的一个属性设置动画,例如底部或左侧,但不能同时为两者设置动画。如何同时为两个属性设置动画,使其沿对 Angular 线移动?我不明白为什么以下代码不起作用:

#container {
position: relative;
}

@keyframes move {
0% { left: 0px; bottom: 0px; }
100% { left: 122px; bottom: 157px; }
}

#object {
position: absolute;
width: 10px;
left: 0px;
bottom: 0px;
/*animation: name duration timing-function delay iteration-count direction fill-mode play-state; */
animation: move 2.5s linear 0s infinite;
}

最佳答案

确实沿对 Angular 线移动:

#container {
position: relative;
height: 180px;
}

@keyframes move {
0% { left: 0px; bottom: 0px; }
100% { left: 122px; bottom: 157px; }
}

#object {
position: absolute;
width: 10px;
left: 0px;
bottom: 0px;
animation: move 2.5s linear 0s infinite;
}
<div id="container"><div id="object">MOVING</div></div>

关于具有多个属性的 CSS 关键帧动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52563622/

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