css+div布局鸡尾酒checkbox开关效果代码

代码语言:html

所属分类:布局界面

代码描述:css+div布局鸡尾酒checkbox开关效果代码

代码标签: css div 布局 鸡尾酒 checkbox 开关

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

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cocktail Toggle Switch</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

        :root {
            --bg-color: #e8e4e1;
            --track-shadow-dark: #b8b3ae;
            --track-shadow-light: #ffffff;
            --liquid-color: #d10000;
            --liquid-dark: #8a0000;
            --text-color: #3e1e1e;
        }

        body {
            margin: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--bg-color);
            font-family: 'Montserrat', sans-serif;
            overflow: hidden;
      .........完整代码请登录后点击上方下载按钮下载查看

网友评论0