almost 11 years ago
If you want to show rating dynamically you can follow the code below. Here phone.rating contains rating and it comes dynamically.
- <html>
- <div class="rating-block clearfix" funboard-rating rating-value="phone.rating" max="5" >
- </div>
- </html>
- <script>
- phonecatApp.directive('funboardRating', function () {
- return {
- restrict: 'A',
- template: '<div class="ratingStar1">' +
- '<span ng-repeat="star in stars" ng-class="star">' +
- '\★' +
- '</span>' +
- '</div>',
- scope: {
- ratingValue: '=',
- max: '='
- },
- link: function (scope, elem, attrs) {
- scope.stars = [];
- for (var i = 0; i < scope.max; i++) {
- scope.stars.push({filled1: i < scope.ratingValue});
- }
- }
- }
- });
- </script>
- css:
- .ratingStar1{color: #a9a9a9;}
- .ratingStar1 span{
- display: inline-block;
- position: relative;
- width: 1.1em;
- color:#fff;
- font-size:22px;
- }
- .ratingStar1 {width:100%}
- .ratingStar1 .filled1 {color: #f83833;}
<html> <div class="rating-block clearfix" funboard-rating rating-value="phone.rating" max="5" > </div> </html> <script> phonecatApp.directive('funboardRating', function () { return { restrict: 'A', template: '<div class="ratingStar1">' + '<span ng-repeat="star in stars" ng-class="star">' + '\★' + '</span>' + '</div>', scope: { ratingValue: '=', max: '=' }, link: function (scope, elem, attrs) { scope.stars = []; for (var i = 0; i < scope.max; i++) { scope.stars.push({filled1: i < scope.ratingValue}); } } } }); </script> css: .ratingStar1{color: #a9a9a9;} .ratingStar1 span{ display: inline-block; position: relative; width: 1.1em; color:#fff; font-size:22px; } .ratingStar1 {width:100%} .ratingStar1 .filled1 {color: #f83833;}
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)