本文作者:温文曦

动态渐变彩色文字代码

温文曦 2019-10-11 5122 抢沙发
动态渐变彩色文字代码摘要: 实现代码:css@keyframes move {      0% { &n...

实现代码: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>


文章版权及转载声明

作者:温文曦本文地址:https://www.wxnotes.com/blog/53.html发布于 2019-10-11
文章转载或复制请以超链接形式并注明出处文曦博客

赞(10)
阅读
分享

发表评论

快捷回复:

评论列表 (暂无评论,5122人围观)参与讨论

还没有评论,来说两句吧...