css实现文本文字渐变填充动画效果代码
代码语言:html
所属分类:动画
代码描述: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 variable changes over time */ -webkit-animation: gradient-change 2s linear infinite alternate; animation: gradient-change 2s linear infinite alternate; background: linear-gradient( /* in oklch produces more vibrant gradient results learn more https://developer.chrome.com/docs/css-ui/access-colors-spaces#color_interpolation */ to right in oklch, /* use the .........完整代码请登录后点击上方下载按钮下载查看
网友评论0