gsap实现照明开关动画切换效果

代码语言:html

所属分类:表单美化

代码描述:gsap实现照明开关动画切换效果

代码标签: 开关 动画 切换 效果

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

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

<head>

   
<meta charset="UTF-8">




   
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,700;1,400&amp;display=swap'>

   
<style>
        /* ***** Colors - Start ***** */
        /* ***** Colors - End ***** */
        /* ***** Global Styles - Start ***** */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        body {
            background-color: #fdb813;
        }

        .container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* ***** Global Styles - End ***** */
        /* ***** Specific Styles - Start ***** */
        .container {
            height: 100vh;
        }

        .switch {
            width: 60px;
            height: 110px;
            padding-top: 2px;
            background-c.........完整代码请登录后点击上方下载按钮下载查看

网友评论0