Hey there! I have a question. When I load the page, I notice that the background of the "images class" loads before the ng-src image is loaded. Is there a way to fix this issue using Angular js?
<div class="images" >
<img ng-if="expression" class="imgclass" ng-src="{{vm.src || '//:0' }}" />
<img ng-if="!expression" class="imgclass" ng-src="absolute url" />
</div>