我正在使用CSS动画来显示不确定的进度栏。请参考下面的代码。如果您注意到在任何时间点都有2个移动渐变,即当第一个渐变达到宽度的50%时,第二个渐变开始。我知道我已经使用webkit-background-size(50%和100%)定义了CSS。但是我不能做的是确保在任何时间点都只有一个运动部分-即一旦动画到达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>
答案 0 :(得分:0)
而不是使渐变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>