Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-pimg

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-pimg

![Angular](https://angular.io/assets/images/logos/angular/angular.png) ![Pimg](pimg.svg)

  • 0.1.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

AngularPimg

Angular Pimg

Angular Pimg is a progressive image loader component for Angular applications. It was heavily inspired by PIMG which is available for React, Vue and Preact.

Like PIMG, it comes in-built with support for Cloudinary Images.

Installation

npm install angular-pimg

Usage

To use the component, import the module into your app.module.ts or your preferred module like so:

import { NgModule } from 'angular-pimg';
import { AngularPimg } from 'angular-pimg'; 

const pimgOptions = {
  fetchOnDemand: true,
  className: 'img',
  dataSaver: { wrapperClassName: 'wrapper', buttonClassName: 'my-btn' }
}

@NgModule({
  imports: [
    AngularPimg.forRoot(pimgOptions)
  ]
})

Implementing

You can then use the component like so:

<angular-pimg
[fetchOnDemand]='true'
[placeholder]='"placeholderurl.com/path/to/placeholder"'
[src]='"images.com/path/to/image"'
>
</angular-pimg>

Options

Available Pimg Options NOTE: Component options have a higer precedence than global options

Default Options

Default Options

OptionDescriptionTypeDefault ( Required )
fetchOnDemandallows image to load once it is visible on screenbooleantrue
placeholderClassNamethe class Name for the placeholder imagestringpimg__placeholder
dataSaverstyles to be added to the image elementfalse | { wrapperClassName: string, buttonClassName: string }false
classNamethe classname to be added to the image elementstring-

Component Options

OptionDescriptionTypeDefault ( Required )
srcimage sourcestring- (true)
placeholderimage source to preload before real image is fetchedstring-*
fetchOnDemandallows image to load once it is visible on screenboolean-
placeholderClassNamethe classname for the placeholder imageboolean-
stylestyles to be added to the image elementNgStyles-
classNamethe classname to be added to the image elementstring-
dataSaverstyles to be added to the image elementfalse | { wrapperClassName: string, buttonClassName: string }false

* Placeholder images are automatically generated for cloudinary images

Contributions and Open Source stuff

This is an open souce project, feel free to submit isses, and pull requests. Don't forget to star my repo too. Thanks. Looking for me on Twittter? I am @ashinzekene!

License

The MIT License (MIT). Please see License File for more information.

FAQs

Package last updated on 31 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc