我正在尝试更改用于显示评论图像的代码。前面的代码有 5 个星星的图像。第一张图片有一颗星,接下来是两颗星,以此类推。每个图像的宽度相同,因此对齐始终正确。使用的代码是
$p_stars = '<img src="images/stars_' . $rating . '.png">';
根据评分,上述结果会产生一串星,例如
****
*****
*
***
我的想法是用字体很棒的图标替换图像,以便更容易控制颜色,如果颜色或星星的数量需要改变,这需要更少的维护。我这样做了,它工作得很好,但它需要的代码量远远超过图像。所以我的问题是:
- 我应该坚持使用图像吗?
- 有没有更好的方法来为 icon 方法编码?
这是图标方法的代码:
<style>
.stars {color:#FB9802;}
.stars-hide {color:#fff;}
</style>
$p_stars = '';
$p = 0;
while ($p < 5) {
for ($x = 0; $x < $rating; ++$x) {
$p_stars .= '<i class="fas fa-star stars"></i>';
$p++;
}
if ($p == 5) break;
for ($x = $p; $x < 5; ++$x) {
$p_stars .= '<i class="fas fa-star stars-hide"></i>';
$p++;
}
}