0.2.8 • Published 5 years ago

angular-images-loaded v0.2.8

Weekly downloads
41
License
MIT
Repository
github
Last release
5 years ago

angular-images-loaded

Super simple Angular directive to wrap imagesLoaded plugin.

Demo

Installation

$ bower install angular-images-loaded

or

$ npm i -D angular-images-loaded

Usage

Remember to include imagesloaded.pkgd.js somewhere.

Add module to your app dependencies

angular.module('yourModule', [..., 'hj.imagesLoaded']);

Register events in controller

app.controller('MyCtrl', function($scope) {
	var ctrl = this;

	$scope.$on('imagesLoaded:loaded', function(event, element){
		console.log('loaded', element);
	});

	ctrl.imgLoadedEvents = {

		always: function(instance) {
			// Do stuff
		},

		done: function(instance) {
			angular.element(instance.elements[0]).addClass('loaded');
		},

		fail: function(instance) {
			// Do stuff
		}

	};

});

Add directive to element

Note: If using class method then class will be removed on load - useful for css transitions etc.

<div class="images-loaded" images-loaded-events="ctrl.imgLoadedEvents">

	<img src="kitten.jpg">

</div>

<div images-loaded="ctrl.imgLoadedEvents"
	images-loaded-watch="vm.image"
	images-loaded-options="{ background: true }">

	<div ng-style="{ backgroundImage: 'url(' + vm.image + ')' }">

</div>

License

MIT

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

7 years ago

0.2.5

7 years ago

0.2.4

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago