Open In App

How to make Rating using Angular UI Bootstrap ?

Last Updated : 06 Jan, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how to make Dropdown using Angular UI bootstrap.

Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily.

Syntax:

<div uib-rating></div>

Download AngularUI from the link:

https://angular-ui.github.io/bootstrap

 

Approach: 

  • First, add Angular UI bootstrap scripts needed for your project.

<script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.js”></script>
<script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-animate.js”></script>
<script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-sanitize.js”></script>
<script src=”https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.5.0.js”></script>

  • Make rating with its UIBootStrap classes which will set the UI look for the rating.
  • Now make different types of rating using different classes and run the code.

Example:

HTML




<!DOCTYPE html>
<html ng-app="gfg">
  
<head>
  
    <!-- Adding CDN scripts required for our page -->
    <script src=
    </script>
    <script src=
    </script>
    <script src=
    </script>
    <script src=
    </script>
    <link href=
        rel="stylesheet">
  
    <script>
  
        // Adding Modules
        angular.module('gfg', ['ngAnimate', 'ngSanitize', 'ui.bootstrap']);
        angular.module('gfg').controller('rating', function ($scope) {
            $scope.rate = 4;
            $scope.max = 12;
            $scope.isReadonly = false;
            $scope.hov = function (value) {
                $scope.over = value;
                $scope.per = 100 * (value / $scope.max);
            };
        });
    </script>
</head>
  
<body>
    <div ng-controller="rating">
  
        <!-- making a rating -->
        <div class="loumn">
  
            <span uib-rating ng-model="rate" max="max" 
                read-only="isReadonly" on-hover="hov(value)"
                on-leave="over = null" titles=
                "['a','b','c','d','e','f','g','h','i','j','k','l']"
                aria-labelledby="default-rating">
            </span>
              
            <span class="label"
                ng-class="{'label-warning': per<30, 
                    'label-info': per>=30 && per<70
                    'label-success': per>=70}"
                ng-show="over && !isReadonly">{{per}}%</span>
        </div>
    </div>
</body>
  
</html>


Output:

Reference: https://angular-ui.github.io/bootstrap/#!#rating



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads