Creating addClass animations with ngShow
AngularJS provides hooks used to define a custom animation when a directive fires an addClass
event. The following directives will generate addClass
events:
ngShow
: This fires theaddClass
event after thengShow
expression evaluates to a truthy value, and just before the contents are set to visiblengHide
: This fires theaddClass
event after thengHide
expression evaluates to a non-truthy value, and just before the contents are set to visiblengClass
: This fires theaddClass
event just before the class is applied to the elementngForm
: This fires theaddClass
event to add validation classesngModel
: This fires theaddClass
event to add validation classesngMessages
: This is fired to add theng-active
class when ...
Get AngularJS Web Application Development Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.