How to make Rating using Angular UI Bootstrap ? Read Discuss Courses Practice Improve Improve Improve Like Article Like Save Article Save Report issue 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= "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> <link href= "https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" 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 Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now! Last Updated : 06 Jan, 2023 Like Article Save Article Previous AngularJS angular.uppercase() Function Next 3 Important Things to Know About State in React Please Login to comment...