<img ng-repeat="img in images track by $index" ng-src="{{img}}">
add DOM for each img in order starting from url1, using something similar to insertAfter(); is it Possible to make it work in the opposite direction, so he added first, url3, url2 then url3 BEFORE and ie kept the order, but worked as insertBefore();There is a specific case when you need to ng-repeat worked from the end, not the beginning.
<img ng-repeat="img in images track by $index" ng-src="{{images[images.length - $index -1]}}">
Find more questions by tags AngularJavaScript