zoukankan      html  css  js  c++  java
  • 纯css实现音符跳动效果

    如图:

    image


    代码:

    index.html

    <span
      className={styles.voice}>
      <i className={styles.first} />
      <i className={styles.second} />
      <i className={styles.three} />
      <i className={styles.four} />
    </span>
    

    style.less

    .voice {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 100%;
    
        i {
            display: inline-block;
            border-left: 2px solid #10ea14;
            margin: 0 1px;
            position: relative;
    
            &.first {
                height: 8px;
                animation: first 0.5s linear 0s infinite alternate;
            }
    
            &.second {
                height: 4px;
                animation: second 1s linear 0s infinite alternate;
            }
    
            &.three {
                height: 6px;
                animation: three 0.8s linear 0s infinite alternate;
            }
    
            &.four {
                height: 12px;
                animation: four 0.6s linear 0s infinite alternate;
            }
        }
    
        @keyframes first {
            0% {
                height: 4px;
            }
    
            50% {
                height: 8px;
            }
    
            100% {
                height: 10px;
            }
        }
    
        @keyframes second {
            0% {
                height: 12px;
            }
    
            50% {
                height: 9px;
            }
    
            100% {
                height: 7px;
            }
        }
    
        @keyframes three {
            0% {
                height: 14px;
            }
    
            50% {
                height: 12px;
            }
    
            100% {
                height: 10px;
            }
        }
    
        @keyframes four {
            0% {
                height: 10px;
            }
    
            50% {
                height: 8px;
            }
    
            100% {
                height: 5px;
            }
        }
    }
    
  • 相关阅读:
    C#递规与分治策略
    SuperMap Objects Java & Applet
    如何提高显示速度
    系统测试
    ora01033:oracle initialization or shutdown in progress
    ORA12535: TNS:operation timed out。
    oralce01033
    hsql初体验
    创建Oracle数据源失败
    转载地图优化
  • 原文地址:https://www.cnblogs.com/cckui/p/12971374.html
Copyright © 2011-2022 走看看