尝试使用以下 jQuery 将 Material Design CSS 字体放在我的文本前面:
// Build the unordered list of classes with their name and CRN
var text = '';
text += '<ul class="list-group class-cart">';
for (i = 0; i < result.classes[index].length; i++) {
text += '<li class="list-group-item mdi-image-lens">' + result.classes[index][i]['short_name'] + ' (' + result.classes[index][i]['crn'] + ')</li>';
}
text += '</ul>';
我正在使用这个库: http: //fezvrasta.github.io/bootstrap-material-design/bootstrap-elements.html
特别是mdi-image-lens
图标。
我正在尝试从日出日历中模拟这种效果:
这样做,这就是我收到的:
天哪,太可怕了。
这是它通常的样子:
有什么想法可以保留文本大小和属性,而且还可以在文本之前呈现一个漂亮的圆圈(不是项目符号,因为它太小而无法达到预期的效果)?其次,我还有一个变量叫做:
result.classes[index][i]['color']
它具有十六进制颜色值。我想用这个十六进制值作为圆圈的颜色。