继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

快速掌握—HTML快速实现自定义Input开关

格瑞普3941210
关注TA
已关注
手记 4
粉丝 1
获赞 14

file

HTML

<input id="customSwitch" type="checkbox" />
<label for="customSwitch" class="switch"></label>

CSS

/* 定义全局变量 */
:root {
  --base_color: rgba(0, 0, 0, 0.25);
  --act_color: #5dcb61;
}

/* 隐藏input输入框 */
#customSwitch {
	position: absolute;
	left: -9999px;
}

/* 设置自定义颜色 */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: var(--base_color);
  border-radius: 20px;
  transition: all 0.3s 0s;
}
/* 开关圆球 */
.switch::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  background-color: white;
  transition: all 0.3s 0s;
}

input[type="checkbox"]:checked + .switch::after {
  transform: translateX(20px);
}

input[type="checkbox"]:checked + .switch {
  background-color: var(--act_color);
}

核心知识点

  1. 隐藏真实input输入框,通过label for属性与input输入框绑定。

  2. label标签本身作为椭圆形背景,用伪类作为开关圆球。

  3. input选中后,需要单独设置label标签本体和伪类的移动

🌟本系列旨在通过最直接的事例最完整的代码,解决一些开发中常遇到的实际问题。

喜欢的朋友可以点击关注一波~每天都会更新最实用的项目技巧

如果你觉得这篇文章帮助到了你,我很高兴。

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP