range+gsap实现彩色波动动画效果代码
代码语言:html
所属分类:动画
代码描述:range+gsap实现彩色波动动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> * { box-sizing: border-box; transform-style: preserve-3d; } body { display: grid; place-items: center; min-height: 100vh; background: #666; } .container { display: grid; grid-template-columns: repeat(var(--count), 10px); perspective: 50vmin; } input[type="range"] { transform-origin: 0 50%; transform: rotate(-90deg) translate(-50%, 0); accent-color: hsl(calc((360 / var(--count) * var(--index))), 100%, 80%); width: 200px; } </style> </head> <body > <div class="container" style="--count: 40"> <input type="range" min="0" value="0" max="100" step="1" style="--index: 0"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 1"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 2"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 3"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 4"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 5"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 6"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 7"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 8"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 9"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 10"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 11"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 12"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 13"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 14"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 15"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 16"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 17"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 18"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 19"/> <input type="range" min="0" value="0" max="100" step="1" style="--index: 20"/> <input type=".........完整代码请登录后点击上方下载按钮下载查看
网友评论0