zoukankan      html  css  js  c++  java
  • 文字动态颜色变化效果

    被你发现了,哈哈哈。这是一个有趣的小Demo哇。

     鼠标左键键扫描选中上面区域查看效果

    .gradient-text {
        background-image: linear-gradient(90deg, $red, $orange);
        background-clip: text;
        line-height: 60px;
        font-size: 60px;
        animation: hue 5s linear infinite;
        -webkit-text-fill-color: transparent;
    }
    @keyframes hue {
        from {
            filter: hue-rotate(0);
        }
        to {
            filter: hue-rotate(-1turn);
        }
    }
    
    
    <div class="bruce flex-ct-x">
        <h1 class="gradient-text">Full Stack Developer</h1>
    </div>
  • 相关阅读:
    HDU-1205
    HDU-2033
    HDU-2032
    HDU-2031
    HDU-2030
    HDU-2029
    HDU-2028
    HDU-2027
    HDU-2026
    HDU-2025
  • 原文地址:https://www.cnblogs.com/wxhhts/p/11551605.html
Copyright © 2011-2022 走看看