评价中的星效果实现

html

<p class="star">诚信等级:
    <span></span>
    <span></span>
</p>

css

.star {
    text-align: center;
    font-size: 15px;
    padding-top: 10px;
}

.star span {
    display: inline-block;
     20px;
    height: 20px;
    background: url({sh::RES}show/img/star.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 1px;
}

模本中使用php智能化处理

<p class="star">诚信等级:
    <php>
    for($i = 0 ;$i< $certification_info['honesty'];$i ++)
    {
        echo "<span></span>";
    }    
    </php>
</p>
原文地址:https://www.cnblogs.com/jiqing9006/p/5347121.html