div+css实现方块checkbox开关彩虹动画效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现方块checkbox开关彩虹动画效果代码
代码标签: div css 方块 checkbox 开关 彩虹 动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; margin: 0; min-height: 100vh; font-size: 4rem; background: #000; gap: 0.5em; } @property --x1 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x2 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x3 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x4 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x5 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x6 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x7 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x8 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } @property --x9 { syntax: '<percentage>'; initial-value: 3%; inherits: false; } .toggle { appearance: none; position: relative; font-size: 1em; width: 3em; aspect-ratio: 3; border: max(1px, 0.05em) solid #fff; background: linear-gradient(hsl( 0 100 50 / 0.5) 99%, #0000) var(--x1, 3%), linear-gradient(hsl( 40 100 50 / 0.5) 99%, #0000) var(--x2, 3%), linear-gradient(hsl( 80 100 50 / 0.5) 99%, #0000) var(--x3, 3%), linear-gradient(hsl(120 100 50 / 0.5) 99%, #0000) var(--x4, 3%), linear-gradient(hsl(160 100 50 / 0.5) 99%, #0000) var(--x5, 3%), linear-gradient(hsl(200 100 50 / 0.5) 99%, #0000) var(--x6, 3%), linear-gradient(hsl(240 100 50 / 0.5) 99%, #0000) var(--x7, 3%), linear-gradient(hsl(280 100 50 / 0.5) 99%.........完整代码请登录后点击上方下载按钮下载查看
网友评论0