html底部文字添加彩色渐变文字

效果预览:

图片[1]-html底部文字添加彩色渐变文字-盛大互联

样式1“彩色渐变效果-有动画”

你惊艳了我的时光,也温柔了我的岁月

样式2“彩色渐变效果-无动画”

    怀   ,   ,

制作生成方法:

样式1-复制代码修改文字或颜色值即可

<style>
    .masked{
        text-align: center;
        background-image: -webkit-linear-gradient(left, #147B96, #E6D205 25%, #147B96 50%, #E6D205 75%, #147B96);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-background-size: 200% 100%;
        -webkit-animation: masked-animation 4s infinite linear;
      }
    @-webkit-keyframes masked-animation {
         0%{ background-position: 0 0;}
         100% { background-position: -100% 0;}
    }
</style>
<div class="masked" >
       <span style="font-size: 16px;">你惊艳了我的时光,也温柔了我的岁月</span>
</div>

样式2-打开链接一键生成

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容