image.png
    lyrics项目里面自己设计首页需要当前视窗高度有一个箭头上下浮动的效果,按照如下方式实现:

    1. .home-row-foward {
    2. animation: heart 0.5s ease-in-out 2.7s infinite alternate;
    3. height: 30px;
    4. font-size: 25px;
    5. color: #1890ff;
    6. text-align: center;
    7. position: relative;
    8. bottom: 25px;
    9. }
    10. @keyframes heart {
    11. from {
    12. transform: translate(0, 0);
    13. }
    14. to {
    15. transform: translate(0, 15px);
    16. }
    17. }