Load custom GIFs in Angular 2 -


i not able load custom gifs in angular 2. have tried:

<img src="./images/mygif.gif" /> <img [src]="images/mygif.gif" /> 

if it's image such png , jpg, shows fine

i tried loading css this:

background: url("images/mygif.gif"); 

any ideas?

it's better put images inside src/assets build find , attach them /dist.

and use :

<img src="/assets/images/mygif.gif" /> 

and

background: url("/assets/images/mygif.gif"); 

Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -