CSS3星級評分效果程式碼

admin發表於2017-02-28
本章節分享一段程式碼例項,它使用純css實現了星級評分效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
form {
  max-width: 200px;
  margin: 0 auto;
}
.chrome > input {
  position: relative;
  margin-right: 1em;
  border: 0;
  background: transparent;
  color: gold;
  -webkit-transition: color .8s;
  transition: color .8s;
}
.chrome > input:nth-of-type(1) {
  display: none;
}
.chrome > input:before {
  position: absolute;
  content: "★";
  left: 0;
  top: 0;
  font-size: 32px;
  height: 100%;
  width: 100%;
  background: #FFF;
  cursor: pointer;
}
.chrome > input:checked ~ input {
  color: #666;
}
</style>
</head>
<body>
<form>
  <p class="chrome">
    <input type="radio" name="a" value="0" checked="checked" />
    <input type="radio" name="a" value="1" />
    <input type="radio" name="a" value="2" />
    <input type="radio" name="a" value="3" />
    <input type="radio" name="a" value="4" />
    <input type="radio" name="a" value="5" />
  </p>
</form>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。

相關閱讀:

(1).>選擇器參閱CSS選擇器中大於號>的作用一章節。

(2).transition參閱css transition一章節。

(3).t:nth-of-type()參閱CSS nth-of-type()一章節。

(4).:before可以參閱CSS E:before/E::before一章節。

(5).~可以參閱CSS (E~F)一章節。

相關文章