css 每天一练之模拟单选按钮

css 每天一练之模拟单选按钮_第1张图片
效果图

html结构

css样式

ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
.radioes{
    margin: 100px auto;
}
.radioes li{
    float: left;
    margin: 0 10px;
}
.radioes input{
    display: none;
}
.radioes label{
    display: block;
    width: 100px;
    height: 50px;
    background-color: #ccc;
    border-radius: 50px;
    position: relative;
    transition: all ease .5s;
}
.radioes label:after{
    content: '';
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 1px;
    transition: all ease .5s;
}
.radioes input:checked + label:after{
    left: 50px;
}
.radioes input:checked + label{
    background-color: #4ace55;
}

欢迎访问我的博客,同步发布
感谢阅读,如有错误欢迎指正。

你可能感兴趣的:(css 每天一练之模拟单选按钮)