首页 > 代码库 > 星级评价

星级评价

绝对原创:

css代码:

.star {
background: url(images/star0.png) no-repeat;       /***纯灰色5颗星图片****/
background-size: 100% 100%;
width: 72px;
display: inline-block;
vertical-align: bottom;
height: 12px;
}
.star i {
display: inline-block;
height: 12px;
background: url(images/star.png) no-repeat;   /***纯红色5颗星图片****/
overflow: hidden;
}

 

html代码:

<span class="star"><i style="width:50%;"></i></span>

星级评价