Angular's ng-src keeps previous model until it preloads image internally. I am using different image for the banner on each page, when I switch routes, i change main view, leaving header view as it is, just changing bannerUrl model when I have it.
This is resulting in seeing previous banner image while new one is loading.
I was surprised that there's no directive for it yet, but I wanted to make a discussion before trying to build one.
What I want to do I think is have banner model on custom attribute. like:
<img preload-src="{{bannerUrl}}" ng-src="{{preloadedUrl}}">
Then $scope.watch for bannerUrl change, and as soon as it changes, replace ng-src with loader spinner first, and then create temproary img dom element, preload image from preload-src and then assing it to preloadUrl.
Need to think how to handle multiple images too for galleries for example.
Does anyone have any input on it? or maybe someone can point me to existing code?
I've seen existing code on github that uses background-image - but that doesn't work for me as I need dynamic height/width as my app is responsive, and I cannot do it with background-image.
Thank you
Just to share ^^
images can be preloaded on route change by using image-preloader factory and resolve:
complete tutorial here: https://www.coditty.com/code/angular-preload-images-on-route-change-by-using-resolve
Having the 2 urls on the directive seems a touch overcomplicated. What I think is better is to write a directive that works like:
And the directive can watch
ng-src
and (for example) set visibility:false with a spinner until the image has loaded. So something like:This way the element behaves very much like a standard img with an
ng-src
attribute, just with a bit of extra behaviour bolted on.http://jsfiddle.net/2CsfZ/47/
I think this is perhaps the most elegant solution because the directive actually creates the spinner and removes it automatically:
Here is the html:
Note: you'll need to be using font-awesome for this to work as described here
If you want you can pass the image fail and image loader as attributes for the directive....
I have this directive which shows a spinner when img-src changes:
Code here: http://jsfiddle.net/ffabreti/yw74upyr/