angular-equalizer
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

Angular Equalizer

Equalize the height of a set of random elements, without necessarily having a common parent, container, etc.

You can add and remove items on demand using the EqualizerState service.

Usage

Add it to your dependencies

angular.module('yourapp', ['ngEqualizer']);

Use it in your directive

angular.module('yourapp').directive('yourDirective', ['EqualizerState', function(EqualizerState){
  return {
    link: function(scope, el, attr){
      EqualizerState.add('yourDirective', el);
      EqualizerState.add('yourDirective', angular.element('<div/>'));
    }
  };
}]);

Or use it directly in your elements

<div equalizer="'group'"></div>
<div equalizer="'group'" ng-repeat="item in items"></div>
<div equalizer="'group'" ng-if="current"></div>

Elements must have an initial height and must not be hidden (their height is set to 0)

Dependencies

Needs jQuery and Lodash. Also, uses requestAnimationFrame, use a polyfill if you must

License

MIT

Dependents (0)

Package Sidebar

Install

npm i angular-equalizer

Weekly Downloads

194

Version

4.0.0

License

MIT

Last publish

Collaborators

  • pocesar