CSS动画 让元素循环的下滑淡出

 .slide-fade-animation {
   animation-name: example;
   animation-duration: 3s;
   animation-iteration-count: infinite;
   position: relative;
 }
 ​
 @keyframes example {
   0% {
     left: 0px;
     top: 0px;
     opacity: 1;
   }
 ​
   100% {
     left: 0px;
     top: 20px;
     opacity: 0;
   }
 }
<div class="slide-fade-animation" style="font-size: 2.5rem">
     <span class="el-icon-arrow-down"></span>
</div>

上一篇:LeetCode每日一题(Find the Duplicate Number)


下一篇:[LeetCode 447.] Number of Boomerangs