gpt4 book ai didi

CSS动画方向性问题

转载 作者:太空宇宙 更新时间:2023-11-03 22:20:38 24 4
gpt4 key购买 nike

我们正在尝试按如下方式为 div 设置动画:

1- 从 0 拉伸(stretch)到 100%(从左到右)

2-然后从100%缩小到0(也是从左到右)

3- 然后重复。

我们有以下 div:

div {
position: absolute;
height: 2px;
background: #c60000;
left: 0;
top: 0;
color: #789;
width: 0;
animation-duration: 5s;
animation-name: progress;
animation-iteration-count: infinite;
}

@keyframes progress {
50% {
// transform-origin: right top;
width: 100%;
}
}
<div></div>

但是无论我们使用 transform-origin 和 float 、定位等做什么,第二部分都会从右向左收缩。即左侧始终是 anchor ,而我们希望右侧在发生收缩时成为 anchor 。

非常感谢任何帮助。

最佳答案

div {
position: absolute;
height: 2px;
background: #c60000;
top: 0;
color: #789;
animation-duration: 5s;
animation-name: progress;
animation-iteration-count: infinite;
animation-timing-function: linear;
}

@keyframes progress {
0% {
left: 0;
width: 0;
}
50% {
right: 0;
width: 100%;
}
100% {
right: 0;
width: 0;
}
}
<div></div>

关于CSS动画方向性问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54053478/

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