css实现多彩液体融合动态背景文字卡片效果代码
代码语言:html
所属分类:背景
代码描述:css实现多彩液体融合动态背景文字卡片效果代码
代码标签: css 多彩 液体 融合 动态 背景 文字 卡片
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link href="https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap" rel="stylesheet"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> :root { /* Easily change colors here & remove the color cycle if you wish */ --background: #999; --leftColor: #555; --rightColor: black; --textColor: white; animation: 🛕 10s linear infinite; } @keyframes 🛕 { 0% { --background: #999; --leftColor: #555; --rightColor: black; --textColor: white; } 10% { --background: purple; --leftColor: green; --rightColor: orange; --textColor: white; } 20% { --background: mediumspri.........完整代码请登录后点击上方下载按钮下载查看
网友评论0