ngAria.$aria

$ariaProvider service in module ngAria

ngAria.$ariaProvider

$aria provider in module ngAria Used for configuring the ARIA attributes injected and managed by ngAria. angular.module('myApp', ['ngAria'], function config($ariaProvider) { $ariaProvider.config({ ariaValue: true, tabindex: false }); }); Dependencies Requires the ngAria module to be installed. Methods config(config); Enables/disables various ARIA attributes Parameters Param Type Details config object object to enable/disable specific ARIA attributes ariaHidden รข {

ngBind

directive in module ng The ngBind attribute tells Angular to replace the text content of the specified HTML element with the value of a given expression, and to update the text content when the value of that expression changes. Typically, you don't use ngBind directly, but instead you use the double curly markup like {{ expression }} which is similar but less verbose. It is preferable to use ngBind instead of {{ expression }} if a template is momentarily displayed by the browser in its raw

ngAnimate.service

Name Description $animateCss The $animateCss service is a useful utility to trigger customized CSS-based transitions/keyframes from a JavaScript-based animation or directly from a directive. The purpose of $animateCss is NOT to side-step how $animate and ngAnimate work, but the goal is to allow pre-existing animations or directives to create more complex animations that can be purely driven using CSS code. $animate The ngAnimate $animate service documentation is the same for the core $animat

ngApp

directive in module ng Use this directive to auto-bootstrap an AngularJS application. The ngApp directive designates the root element of the application and is typically placed near the root element of the page - e.g. on the <body> or <html> tags. There are a few things to keep in mind when using ngApp: only one AngularJS application can be auto-bootstrapped per HTML document. The first ngApp found in the document will be used to define the root element to auto-bootstrap as an

ngAria

Installation First include angular-aria.js in your HTML: <script src="angular.js"> <script src="angular-aria.js"> You can download this file from the following places: Google CDN e.g. //ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-aria.js Bower e.g. bower install angular-aria@X.Y.Z code.angularjs.org e.g. "//code.angularjs.org/X.Y.Z/angular-aria.js" where X.Y.Z is the AngularJS version you are running. Then load the module in your application by adding it as a depen

ngAnimate.directive

Name Description ngAnimateChildren ngAnimateChildren allows you to specify that children of this element should animate even if any of the children's parents are currently animating. By default, when an element has an active enter, leave, or move (structural) animation, child elements that also have an active structural animation are not animated. ngAnimateSwap ngAnimateSwap is a animation-oriented directive that allows for the container to be removed and entered in whenever the associated e

ngAnimate.ngAnimateSwap

directive in module ngAnimate ngAnimateSwap is a animation-oriented directive that allows for the container to be removed and entered in whenever the associated expression changes. A common usecase for this directive is a rotating banner or slider component which contains one image being present at a time. When the active image changes then the old image will perform a leave animation and the new element will be inserted via an enter animation. Directive Info This directive creates new s

ngAnimate.ngAnimateChildren

directive in module ngAnimate ngAnimateChildren allows you to specify that children of this element should animate even if any of the children's parents are currently animating. By default, when an element has an active enter, leave, or move (structural) animation, child elements that also have an active structural animation are not animated. Note that even if ngAnimteChildren is set, no child animations will run when the parent element is removed from the DOM (leave animation). Directiv

ngAnimate

Installation First include angular-animate.js in your HTML: <script src="angular.js"> <script src="angular-animate.js"> You can download this file from the following places: Google CDN e.g. //ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-animate.js Bower e.g. bower install angular-animate@X.Y.Z code.angularjs.org e.g. "//code.angularjs.org/X.Y.Z/angular-animate.js" where X.Y.Z is the AngularJS version you are running. Then load the module in your application by addin