下面的代码不需要任何javascript代码就可以生成滑动渐变动画:
html {
height: 100%
}
body {
height: 100%;
margin: 0
}
@keyframes loading {
from {
background-position: -5000% 0, 0 0
}
to {
background-position: 5000% 0, 0 0
}
}
.skeleton {
height: 100%;
animation-name: loading;
animation-duration: 1.5s;
animation-iteration-count: infinite;
background-color: #fff;
background-repeat: no-repeat;
background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .8) 50%, hsla(0, 0%, 100%, 0)), linear-gradient(#e5e5e5 100%, transparent 0);
background-size: 99% 100%;
}
<div class="skeleton"></div>
我尝试了一些属性,但仍然不明白它是如何工作的。特别是在将background-size: 99% 100%;
改为background-size: 100% 100%;
动画幻灯片时!
你能解释一下吗?
发布于 2018-09-18 22:21:15
我不知道你的浏览器是什么和它的版本。但在我的电脑上,如果是background-size: 100% 100%
,动画将会停止。(实际上,background-position
将被忽略)
这个技巧的想法是用background-position
移动background-image
(线性梯度)。(有关详细信息,请查看以下代码中的注释)
关于你的第二个问题,你应该参考这个答案CSS background-position ignored when using background-size。快速总结一下,如果background-size
达到100%,就不能对background-position
使用percent。这是因为背景中的图像没有可移动的空间。
如果你坚持使用100%的background-size
。恐怕您必须使用绝对值。
顺便说一句,我已经升级了代码。现在看起来好多了。
html {
height: 100%
}
body {
height: 100%;
margin: 0
}
@keyframes loading {/* original code */
from {/* This is the position of image of the first frame */
background-position: -5000% 0, 0 0
}
to {/* This is the pos of img of the last frame */
background-position: 5000% 0, 0 0
}
}
@keyframes betterLoading {
0% {/* This is the position of image of the first frame */
background-position: -5000% 0, 0 0
}
50% {
/* This is the pos of img of a frame in the middle happening animation */
/* If duration is 1s then the pos below will be at 0.5s */
background-position: 5000% 0, 0 0
}
100% {/* This is the pos of img of the last frame */
background-position: -5000% 0, 0 0
}
}
.skeleton {
height: 100%;
animation-name: betterLoading;
animation-duration: 1.5s;
animation-iteration-count: infinite;
background-color: #fff;
background-repeat: no-repeat;
background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .8) 50%, hsla(0, 0%, 100%, 0)), linear-gradient(green 100%, transparent 0);
background-size: 99% 100%, cover;
}
<div class="skeleton"></div>
https://stackoverflow.com/questions/52393135
复制相似问题