div+css实现亮色立体翻板checkbox开关效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现亮色立体翻板checkbox开关效果代码
代码标签: div css 亮色 立体 翻板 checkbox 开关
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" /> <style> body{ margin:100px; background: #212121; text-align:center; } .switch { font-size: 17px; position: relative; display: inline-block; width: 5em; height: 2.5em; user-select: none; } /* Hide default HTML checkbox */ .switch .cb { opacity: 0; width: 0; height: 0; } /* The slider */ .toggle { position: absolute; cursor: pointer; width: 100%; height: 100%; background-color: #373737; border-radius: 0.1em; transition: 0.4s; text-transform: uppercase; font-weight: 700; overflow: hidden; box-shadow: -0.3em 0 0 0 #373737, -0.3em 0.3em 0 0 #373737, 0.3em 0 0 0 #373737, 0.3em 0.3em 0 0 #373737, 0 0.3em 0 0 #373737; } .toggle > .left { position: absolute; display: flex; width: 50%; height: 88%; background-color: #f3f3f3; color: #373737; left: 0; bottom: 0; align-items: center; justify-content: center; transform-origin: right; transform: rotateX(10deg); transform-style: preserve-3d; transition: all 150ms; } .left::before { position: absolute; content: ""; width: 100%; height: 100%; background-color: rgb(206, 206, 206); transform-origin: center left; transform: rotateY(90deg); } .left::after { position: absolute; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0