动态渐变彩色文字代码

实现代码:css

@keyframes move {
      0% {        background-position: 0 0;
      }
      100% {        /*宽度固定,如果为百分比背景不会滚动*/
        background-position: -300px 0;
      }
    }    .wrap {      /*设置背景渐变色*/
      background-image: linear-gradient(to right, red, orange, yellow, green, yellow, orange, red, orange, yellow, green, yellow, orange, red);      /*chrome私有样式,加前缀,文字显示背景图片*/
       -webkit-background-clip: text;      animation: move 5s infinite;      /*文字颜色设为透明*/
      color: transparent;      /*宽度固定*/
      width: 300px;
    }

HTML:

<div class="wrap">    闲看儿童捉柳花</div>

© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称常用语 夸夸
夸夸
还有吗!没看够!
表情代码图片

    暂无评论内容