56

ngx-images: Handle Broken Images In Angular Apps

 5 years ago
source link: https://www.tuicool.com/articles/hit/eyYzYnB
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

ngx-images

Ever experienced broken image like

mieeIvY.png!web

If ever this happen that you loose your image but there will always be a backup for you. We've added an extra feature which will boost your page load time to upto 10X. As we load the image after the page load successfully so you angular app will turn much faster using this plugin.

Getting Started

npm install ngx-images --save

    Then in your code `app.module.ts`
    
    import { NgxImagesModule } from  'ngx-images';

    @NgModule({    
	    imports: [
	    ...otherImports,    
	    NgxImagesModule 
	    ]
    })

Then in your code app.component.ts

import { NgxImagesService, ImageConfig } from 'ngx-images';
localConfig:  ImageConfig  = { imageFallbackPath:  'https://www.gstatic.com/webp/gallery3/1.png',
	addLoader:  true,
	loader:  'rotating-plane',
	pageLoadBoost:  true
};

constructor(public  imgHelper:  NgxImagesService) {}    

ngOnInit() {
	    this.imgHelper.setGlobal({ imageFallbackPath:  'https://www.gstatic.com/webp/gallery3/2.png',    
	    addLoader:  true,    
	    loader:  'rotating-plane',    
	    pageLoadBoost:  true    
    });    
}

Then in your code app.component.scss

@import  '~ngx-images/loader';

Then in your code app.component.html

<strong>This doesn't look good</strong>
<img src="i_am_not_here.jpg">

<strong>Replace below image with your logo</strong>
<span> <-Atleast one parent of image with single child is important
    <img src='asfd.jpg' ngxImages>
</span>

Working Examples

Here's the demo on stackblitz

Versioning

We use SemVer for versioning. For the versions available, see the [tags on this repository]To install a particular version do it like this npm i [email protected] --save

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

Thanks to everyone who'll use this plugin as this is my first plugin so actively looking forward to work on it. So all the issues are welcomed and I'll look forward to actively work on them.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK