css美化radio实现星级评分效果代码
代码语言:html
所属分类:星级评分
代码描述:css美化radio实现星级评分效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
* {
box-sizing: border-box;
}
body {
background-color: #fff;
font-family: Lato, Helvetica, Arial, sans-serif;
font-weight: 400;
color: #666;
}
a {
color: #27ae60;
}
a:focus,
a:hover,
a:visited {
color: #36d278;
}
form {
margin: 0 auto 3rem;
}
form:first-of-type {
margin-top: 3rem;
}
fieldset {
margin: 0 auto;
}
legend {
margin-bottom: 0.5rem;
}
input[type=radio] {
border: 3px solid black;
}
.rating {
display: block;
position: relative;
width: 150px;
min-height: 60px;
padding: 0;
border: none;
}
.rating > input {
position: absolute;
margin-right: -100%;
opacity: 0;
}
.rating > input:checked ~ label,
.rating > input:focus ~ label {
background-position: 0 0;
}
.rating > input:checked + label,
.rating > input:focus + label {
background-position: 0 -30px;
}
.rating > input:hover ~ label {
background-position: 0 0;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0