css实现动态背景变幻色彩渐变按钮效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现动态背景变幻色彩渐变按钮效果代码

代码标签: css 动态 背景 变幻 色彩 渐变 按钮

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

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

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

 
 
<style>
body {
        background-color: #111;
        color: white;
        font-family: "Kanit", sans-serif;
        text-align: left;
        padding-inline: 16px;
        min-height: 100vh;
        display: grid;
        place-content: center;
}

@property --blue-x {
        syntax: "
<percentage>";
        initial-value: 50%;
        inherits: false;
}

@property --blue-y {
        syntax: "
<percentage>";
        initial-value: 50%;
        inherits: false;
}

@property --purple-x {
        syntax: "
<percentage>";
        initial-value: 50%;
        inherits: false;
}

@property --purple-y {
        syntax: "
<percentage>";
        i.........完整代码请登录后点击上方下载按钮下载查看

网友评论0