我正在使用角度引导ui的rating
指令。如何使用自定义图像作为图标而不是glyphicon?
最佳答案
这对我有用。
-CSS
.orange-star {
height: 18px;
width: 18px;
background-size: contain;
background-image: url("{!$Resource.OrangeStar}");
}
.white-star {
height: 18px;
width: 18px;
background-size: contain;
background-image: url("{!$Resource.Whitestar}");
}
---- HTML -----
<rating ng-model="rate" max="4" state-on="'orange-star'" state-off="'white-star'"> </rating>
关于angularjs - Angular.ui bootstrap 评级中的自定义图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23961796/