angular-animate-change

WebJar for angular-animate-change

License

License

MIT
Categories

Categories

Angular User Interface Web Frameworks
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

angular-animate-change
Last Version

Last Version

1.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

angular-animate-change
WebJar for angular-animate-change
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/bendrucker/angular-animate-change

Download angular-animate-change

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/angular-animate-change/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>angular-animate-change</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/angular-animate-change/
implementation 'org.webjars.bower:angular-animate-change:1.0.2'
// https://jarcasting.com/artifacts/org.webjars.bower/angular-animate-change/
implementation ("org.webjars.bower:angular-animate-change:1.0.2")
'org.webjars.bower:angular-animate-change:jar:1.0.2'
<dependency org="org.webjars.bower" name="angular-animate-change" rev="1.0.2">
  <artifact name="angular-animate-change" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='angular-animate-change', version='1.0.2')
)
libraryDependencies += "org.webjars.bower" % "angular-animate-change" % "1.0.2"
[org.webjars.bower/angular-animate-change "1.0.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

angular-animate-change Build Status

Angular directive for applying an animation class to an element whenever a value changes. Useful for applying attention-calling animation like flashes or shakes.

Installing

# npm
$ npm install angular-animate-change
# bower
$ bower install angular-animate-change

Setup

// node module exports the string 'animate-change' for convenience
angular.module('myApp', [
  require('angular-animate'),
  require('angular-animate-change')
]);
// otherwise, include the code first then the module name
angular.module('myApp', [
  'ngAnimate',
  'animate-change'
]);

API

animateChange (directive)
<span animate-change="value" change-class="flash"></span>

When $scope.value changes, the class 'flash' will be added. Animation classes will applied during the transition.

Versions

Version
1.0.2