0

I'm using ng-file-upload to upload an image, but can't find the way to add upload animation instead of image during upload process. Is there a way to do it?

snowfinch27
  • 149
  • 2
  • 16
  • what have you tried? you can easily do it by intercepting the http calls. refer [here](http://stackoverflow.com/questions/17838708/implementing-loading-spinner-using-httpinterceptor-and-angularjs-1-1-5).. – Anirudha Jul 28 '16 at 12:42
  • The demo page and most examples have the progress indicator if that's what you mean. – danial Jul 28 '16 at 12:44

1 Answers1

1

I would suggest using something like Bootstrap or some other css library that has a progress bar component. They will have these animations built in and are fairly easy to set up. (See the link above for bootstrap's progress bar).

You can find a similar stack overflow post about angularjs and bootstrap progress bars here.

Change bootstrap progress-bar width from angularjs

Community
  • 1
  • 1
Patrick Barr
  • 1,123
  • 7
  • 17