1.0.4 • Published 4 years ago

kwh-progressive-image-loader v1.0.4

Weekly downloads
24
License
MIT
Repository
-
Last release
4 years ago

ProgressiveImageLoader

1.6KB (Min + gzip) light Weight, OnPushed angular component to progressively load Image. Supports:

  • Animate Image Blur while switching URLS
  • Start loading On Custom Intersection and threshold
  • Custom Background Color Before loading

Installation

To add the Progressive Loader to your Angular project:

npm install --save kwh-progressive-image-loader

Once installed, add the Progressive Loader to your app.module.ts:

import { ProgressiveImageLoaderModule } from 'progressive-image-loader';

...

@NgModule({
   ...
   imports: [
     ...
     ProgressiveImageLoaderModule,
    ...
   ],
   ...
});
export class AppModule {}

Sample usage

Now you can use the Progressive loader component in your app components, for example in app.component.ts:

import { ProgressiveImageLoaderOptions } from 'progressive-image-loader';
...

@Component({...})
export class AppComponent {
    loadingOptions: ProgressiveImageLoaderOptions = {
        thumbnailUrl: <thumbnail_url>,
        originalUrl: <original_url>,
        backgroundColor: <background_color>,
        intersectionParent: <parent_to_observe_intersection>,
        blurWhileBackground: <blur_while_background_color>,
        blurWhileThumbnail: <blur_while_thumbnail_color>,
        animationTimeBetweenBackgroundAndThumbnail: <animation_time_bw_bg_and_thumbnail>,
        animationTimeBetweenThumbnailAndOriginal: <animation_time_bw_thumbnail_and_final_url>
    };
}

And in template file app.component.html:

<kwh-progressive-image-loader
[loadingOptions]="loadingOptions"
></kwh-progressive-image-loader>

Input Options

Below is the list of properties for loadingOptions

ProgressiveImageLoaderOptions

PropertyOptionalDefault ValuedataTypedescription
thumbnailURLfalse-stringthumbnail URL for the image to be loaded
originalURLfalse-stringOriginal URL for the image to be loaded
backgroundColorfalse-stringBackground color before loading the thumbnail URL
animationTimeBetweenBackgroundAndThumbnailtrue300 (ms)stringTime for which the blur should animate while applying thumbnail URL
animationTimeBetweenThumbnailAndOriginaltrue300 (ms)stringTime for which the blur should animate while applying final (original) URL
blurWhileBackgroundtrue25 (px)stringBlur value in pixels while background color is applied
blurWhileThumbnailtrue25 (px)stringBlur value in pixels while thumbnail Image is applied
intersectionParenttrue-stringIf intersection parent is provided, image will start loading once the image reaches the intersection threshold
intersectionThresholdtrue0.25stringfraction of image visible in the intersectionParent to trigger loading (between 0-1)

Output Events

EventDescriptionOutputData
loadingFailedWhen Image Loading FailsProgressStep

In case of failed loading, possible values of ProgressStep

ValueDescription
FINAL_LOADING_FAILEDWhen Original Image failed to load
THUMBNAIL_LOADING_FAILEDWhen Thumbnail Image Failed to load

Further help / Suggestions

Contact me at kishinkarra@gmail.com

1.0.2

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago