html加css制作一个滑动开关

这样的一个开关还是比较常用的,实现的方法也挺多,记录html+css实现的一种

html:

css:

.switch-btn{
	width: 45px;
	height: 25px;
	position: relative;
	top: 1px;
}
.hidden-checkbox,
.switch-area,
.switch-toggle{
	position: absolute;
	top: 0;
	left: 0;
}
.hidden-checkbox{
	width: 45px;
    height: 25px;
	opacity: 0;
	z-index: 10;
	cursor: pointer;
}
.switch-area{
	width: 100%;
	height: 100%;
	border-radius: 25px;
	background-color: #B3B3B3;
}
.switch-toggle{
	width: 25px;
	    height: 25px;
	border: 1px solid #B3B3B3;
	border-radius: 50%;
	background-color: #fff;
}
//核心代码
.hidden-checkbox:checked ~ .switch-area{
	background-color: #4084F1;
}
.hidden-checkbox:checked ~ .switch-toggle{
	border: 1px solid #4084F1;
	left: 20px;
}
.switch-area,
.switch-toggle{
	-webkit-transition: All 0.3s ease; 
	   -moz-transition: All 0.3s ease; 
	     -o-transition: All 0.3s ease;
	        transition: All 0.3s ease; 
}

 

你可能感兴趣的:(web前端)