码迷,mamicode.com
首页 > Web开发 > 详细

手写CSS+js实现radio单选按钮

时间:2018-01-09 16:44:26      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:技术分享   radio   手写   center   info   height   idt   com   lin   

有的时候我们需要用长得漂亮一点的单选按钮,那么,就要抛弃原有的自己来写,下面就是我实现的

<div class="radio"><span class="yuan rdactive"><span></span></span>你丑你先</div>
	<div class="radio"><span class="yuan"><span></span></span>你才丑你先</div>
<div class="radio"><span class="yuan"><span></span></span>你更丑你先</div>
	.radio{
		display: flex;
		align-items: center;
		width: 100px;
		cursor: pointer;
	}
	.yuan{/*大圈*/
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #ececec;/*这里写自己喜欢的颜色*/
		display: flex;
		align-items: center;
		margin-right: 5px;
	}
	.radio>span.rdactive{
		background: #EF6121;/*这里写自己喜欢的颜色*/
	}
	.yuan span{/*小圈*/
		display: block;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: white;/*这里写自己喜欢的颜色*/
		margin: 0 auto;
	} 
$(".radio").children(‘.yuan‘).on(‘click‘,function(){
	$(‘.rdactive‘).removeClass(‘rdactive‘);
	$(this).addClass("rdactive").siblings().removeClass("rdactive");
})

  效果图:技术分享图片

好啦,到这里就可以实现啦

手写CSS+js实现radio单选按钮

标签:技术分享   radio   手写   center   info   height   idt   com   lin   

原文地址:https://www.cnblogs.com/eyed/p/8251467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!