8

我正在使用jquery.raty.min.js来显示星级,在 js 方法中,我可以选择更改显示开始图像,例如

starOff:"/images/star_none.png",

starOn:"/images/star_full.png"

但在这里我想使用字体 Awesome 类,比如

<i class="fa fa-star-o"></i>
<i class="fa fa-star"></i>

我试过像下面这样放置类

starOff:"<i class='fa fa-star-o'></i>",

starOn:"<i class='fa fa-star'></i>"

但它不起作用任何人都可以帮助做到这一点。

4

5 回答 5

12

这个问题的简短回答是使用Raty (2.7.0)的最新更新(截至此响应的最后一次编辑)并查看“starType”属性。当您设置元素时,您将执行以下操作:

$('div').raty({
  // This is the config you need to change the tag from image to icon
  starType : 'i'
});

这里有更多细节……如果您查看CSS文件和字体文件,您将看到它们如何设置<i>标签以使用特定字体。从那里它的一个简单的任务来确定每个类的:before内容将是什么。首先确保包含 FontAwesome,然后像这样配置你的 CSS(特定于 FontAwesome):

.cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;

  /*This is the important part*/
  font-family: "FontAwesome";

  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}

.cancel-on-png:before {
  /*the "\f057" represents an unfilled circle with an x in it*/
  /*each of these can be configured to be whichever icon you would like*/
  /*fore more information on the icon code, look at the link listed below*/
  content: "\f057";
}

.cancel-off-png:before {
  content: "\f05c";
}

.star-on-png:before {
  content: "\f005";
}

.star-off-png:before {
  content: "\f006";
}

.star-half-png:before {
  content: "\f123";
}

FontAwesome 的 CSS 内容值的完整列表可以在这里找到


最终产品看起来像这样:

<div>
  <i title="Cancel this rating!" class="raty-cancel cancel-off-png" data-alt="x"></i>&nbsp;
  <i data-alt="1" class="star-off-png" title="Bad"></i>&nbsp;
  <i data-alt="2" class="star-off-png" title="Below Average"></i>&nbsp;
  <i data-alt="3" class="star-off-png" title="Average"></i>&nbsp;
  <i data-alt="4" class="star-off-png" title="Above Average"></i>&nbsp;
  <i data-alt="5" class="star-off-png" title="Great"></i>
  <input name="score" type="hidden">
</div>

当这样配置时:

$(div).raty({
  readOnly    : readOnly,
  cancel      : !readOnly,
  noRatedMsg  : 'This component has not been rated yet',
  half        : true,
  starType    : 'i',
  hints       : ['Bad', 'Below Average', 'Average', 'Above Average', 'Great'],
  click       : function(score, event) {
    console.log("The score is:", score);
  }
});

我知道已经 3 个月了,但我希望这对某人有所帮助!

于 2014-06-17T17:56:41.747 回答
3

我不认为有一个简单的方法不修改一点插件本身。如果您查看该jquery.raty.js文件,请搜索:

$('<img />', { src : icon, alt: i, title: title }).appendTo(this);

那就是创建图像元素,

您需要做的是创建图标。我认为将其更改为:

$('<i />', { class : icon  }).appendTo(this);

但用法是:

starOff:"fa fa-star-o",

starOn:"fa fa-star"

我还没有测试过,但这应该是一个开始,可能你需要用 CSS 来调整图标的外观

于 2014-02-26T11:27:29.390 回答
1

也许我无法抓住现有答案的重点,但我发现在 raty 2.7.1 中使用 fontawesome 图标并不难。这是我的代码。

html:

<div class="score-star" id="star-appearance" rel="score-appearance">
</div>

CSS:

.score-star {
    color: #07b062;
    font-size: 1.5em;
}

js:

$('.score-star').each(function () {
    $(this).raty({
        number: 5,
        starType: 'i',
        starOff: 'fa fa-star-o',
        starOn: 'fa fa-star'
    });
});

比率:

<link href="//cdn.bootcss.com/raty/2.7.1/jquery.raty.min.css" rel="stylesheet">
<script src="//cdn.bootcss.com/raty/2.7.1/jquery.raty.min.js"></script>

真棒:

<link href="//cdn.bootcss.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">

希望它有帮助。

于 2016-11-16T16:45:18.963 回答
0

请检查字体大小和颜色。添加属性字体大小和颜色。

于 2014-02-26T11:27:36.507 回答
0

使用 font awesome 5,代码应如下所示:

.star-on-png, .star-off-png, .star-half-png {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;

  /*This is the important part*/
  font-family: 'Font Awesome 5 Free';

  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}

.star-on-png:before {
  content: "\f005";
  font-weight: 900;
}

.star-off-png:before {
  content: "\f005";
}

.star-half-png:before {
  content: "\f5c0";
  font-weight: 900;
}
于 2019-01-11T16:48:21.600 回答