gpt4 book ai didi

html - 任何时候只有一个 CSS 动画条

转载 作者:行者123 更新时间:2023-11-28 19:26:41 25 4
gpt4 key购买 nike

我正在使用 CSS 动画来显示不确定的进度条。引用下面的代码。如果您注意到在任何时间点有 2 个移动渐变,即当第一个达到宽度的 50% 时,第二个开始。我知道我已经使用 webkit-background-size(50% 和 100%)以这种方式定义了 css。然而,我无法做的是确保在任何时间点都应该只有 1 个移动部分 - 即一旦动画到达 div 的右端,它就应该从左端开始。有什么建议吗?

引用https://jsfiddle.net/AnuragSinha/nuokygpe/1/以及下面相应的代码。

    @-webkit-keyframes moving-gradient {
0% { background-position: left bottom; }
100% { background-position: right bottom; }
}

.loading-gradient {
width: 200px;
height: 30px;
background: -webkit-linear-gradient(
left,
#e9e9e9 50%,
#eeefef 100%
) repeat;
-webkit-background-size: 50% 100%;
-webkit-animation-name: moving-gradient;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
<div class="loading-gradient" style="width: 200px; height: 30px"> </div>

最佳答案

不是让渐变 50% 而是让它成为 200% 并在其中定义 2 个渐变着色。这样做,渐变的每个部分都将恰好覆盖元素宽度的 100%,然后您可以从左到右对其进行动画处理。

.loading-gradient {
width: 200px;
height: 30px;
background: linear-gradient(to left,
#e9e9e9 0% 25%, #eeefef 50%, /* first one take the half*/
#e9e9e9 50% 75%, #eeefef 100%); /* second one take the other half*/
background-size: 200% 100%;
animation: moving-gradient 1s linear infinite;
}

@keyframes moving-gradient {
0% {
background-position: right;
}
/*100% {
background-position: left; /* No need to define this since it's the default value*/
}*/
}
<div class="loading-gradient" style="width: 200px; height: 30px"> </div>

由于渐变现在的尺寸大于容器,您需要执行相反的动画(从右到左)。

更多详情:Using percentage values with background-position on a linear gradient


这是另一个可以考虑伪元素和翻译动画的想法:

.loading-gradient {
width: 200px;
height: 30px;
position:relative;
z-index:0;
overflow:hidden;
}
.loading-gradient:before {
content:"";
position:absolute;
z-index:-1;
top:0;
right:0;
width:200%;
bottom:0;
background: linear-gradient(to left, #e9e9e9 50%, #eeefef 100%);
background-size: 50% 100%;
animation: moving-gradient 1s linear infinite;
}

@keyframes moving-gradient {
100% {
transform: translate(50%);
}
}
<div class="loading-gradient" style="width: 200px; height: 30px"> </div>

关于html - 任何时候只有一个 CSS 动画条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56001620/

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