css实现checkbox开关三维翻转切换动画效果代码
代码语言:html
所属分类:表单美化
代码描述:css实现checkbox开关三维翻转切换动画效果代码
代码标签: css checkbox 开关 三维 翻转 切换 动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
:root {
--dur: 1000ms;
}
body {
background-color: #cccccc;
}
.wrapper {
position: absolute;
inset: 0;
display: grid;
place-items: center;
perspective: 200px;
transform-style: preserve-3d;
background: radial-gradient(
circle at 50% 50%,
rgba(0, 0, 0, 0) 50%,
rgba(0, 0, 0, 0.3) 100%
);
}
.flexDiv {
position: absolute;
display: flex;
align-items: center;
width: 200px;
height: 100px;
pointer-events: none;
transform-style: preserve-3d;
}
.flexDiv div {
position: relative;
height: 100%;
width: 10%;
background-image: linear-gradient(
to right,
#70badf 0%,
#77c6ed 90%,
#77c6ed 100%
);
perspective: 200px;
transform-style: preserve-3d;
transition: all var(--dur) ease-in-out;
}
.flexDiv div:nth-of-type(1) {
-webkit-clip-path: circle(70% at 255% 50%);
clip-path: circle(70% at 255% 50%);
}
.flexDiv div:nth-of-type(2) {
-webkit-clip-path: circle(70% at 155% 50%);
clip-path: circle(70% at 155% 50%);
}
.flexDiv div:nth-of-type(10) {
-webkit-clip-path: circle(70% at -155% 50%);
clip-path: circle(70% at -155% 50%);
}
.flexDiv div:nth-of-type(9) {
-webkit-clip-path: circle(70% at -55% 50%);
clip-path: circle(70% at -55% 50%);
}
.toggleMe {
transform: scaleX(18) scaleY(10);
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
opacity: 0;
z-index: 9;
}
.toggleMe:checked ~ .flexDiv div {
transform: rotateX(180deg);
filter: grayscale(100%) brightness(135%);
}
.toggleMe:checked ~ .flexDiv div::after {
transform: rotateX(0deg) translateZ(calc(var(--dur) * 2));
}
.circle,
.circleOther {
position: absolute;
width: 50px;
height: 50px;
background: radial-gradient(
circle at 30% 30%,
#77c6ed 0%,
#77c6ed 30%,
#1b729e 100%
);
z-index: 2;
pointer-events: none;
border-radius:.........完整代码请登录后点击上方下载按钮下载查看
网友评论0