现在整个画面平滑出现了如何让它从左到右平滑出现,也就是右边的部分如何先完全变暗,左边的动画如何平滑出现对。
#slide {
animation: ani10601 5s linear infinite;
opacity: 0.2;
}
@keyframes ani10601 {
0% {
opacity: 0.2;
}
100% {
opacity: 1;
}
}
<!-- partial:index.partial.html -->
<img id="slide" src="https://cdn.pixabay.com/photo/2019/08/26/06/40/table-mountain-4430922_960_720.jpg" />
<!-- partial -->
所以它看起来
或者这个:https ://ru.stackoverflow.com/a/467978/308951