css星级评价

星级评价CSS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0" />
<title>sell</title>
<style>
.chStar {
height: 14px;
width: 73px;
background-image: url(./chStar.png);
display: inline-block;
overflow: hidden;
}

.chStar01 {
background-position: 0 0;
}

.chStar02 {
background-position: 0 -20px;
}

.chStar03 {
background-position: 0 -40px;
}

.chStar04 {
background-position: 0 -60px;
}

.chStar05 {
background-position: 0 -80px;
}

.chStar06 {
background-position: 0 -100px;
}

.chStar07 {
background-position: 0 -120px;
}

.chStar08 {
background-position: 0 -140px;
}

.chStar09 {
background-position: 0 -160px;
}

.chStar10 {
background-position: 0 -180px;
}
</style>
</head>

<body>
<div class="chStar chStar03"></div>
</body>

</html>



百度