gsap+range彩色风车旋转动画效果代码
代码语言:html
所属分类:动画
代码描述:gsap+range彩色风车旋转动画效果代码
下面为部分代码预览,完整代码请点击下载或在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;
perspective: 50vmin;
}
input {
transform-origin: 0 50%;
position: absolute;
top: 50%;
left: 50%;
transform: rotate(calc((360 / var(--count) * var(--index)) * 1deg)) translate(10%, 0);
accent-color: hsl(calc((360 / var(--count) * var(--index))), 100%, 80%);
}
</style>
</head>
<body>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 0"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 1"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 2"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 3"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 4"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 5"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 6"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 7"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 8"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 9"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --index: 10"/>
<input type="range" min="0" value="0" max="100" step="1" style="--count: 40; --in.........完整代码请登录后点击上方下载按钮下载查看
网友评论0