【发布时间】:2020-01-17 13:27:27
【问题描述】:
这是一个类似 Facebook 的加载器。我不知道为什么会闪烁。 我试过改变大小,这会影响闪烁,但我不明白怎么做。 有人可以帮我找出原因吗?
div{
width:600px;
height:100px;
}
.placeholder-waves {
-webkit-animation-duration: 1.3s;
animation-duration: 1.3s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-name: wave;
animation-name: wave;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-direction: normal;
animation-direction: normal;
background-size: 1200px 104px;
background: #f6fbfb;
background: #eeeeee;
background: linear-gradient(to right, #eeeeee 4%, #dddddd 47%, #eeeeee 87%);
}
@keyframes wave {
0% {
background-position: -468px 0
}
100% {
background-position: 468px 0
}
}
@-webkit-keyframes wave {
0% {
background-position: -468px 0
}
100% {
background-position: 468px 0
}
}
<div class="placeholder-waves"></div>
【问题讨论】: