css实现文本文字渐变填充动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现文本文字渐变填充动画效果代码

代码标签: css 文本 文字 渐变 填充 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
 
<meta charset="UTF-8">
 

 
 
<style>
/*
  these type the CSS variable as color
  unlocking the ability for the browser
  to animate just that portion
*/
@property --color-1 {
  syntax: "
<color>";
  inherits: false;
  initial-value: hsl(98 100% 62%);
}

@property --color-2 {
  syntax: "
<color>";
  inherits: false;
  initial-value: hsl(204 100% 59%);
}

/* keyframes that change the color variable */
@-webkit-keyframes gradient-change {
  to {
    --color-1: hsl(210 100% 59%);
    --color-2: hsl(310 100% 59%);
  }
}
@keyframes gradient-change {
  to {
    --color-1: hsl(210 100% 59%);
    --color-2: hsl(310 100% 59%);
  }
}

article {
  /* apply va.........完整代码请登录后点击上方下载按钮下载查看

网友评论0