@pluginjs/images-loader

0.8.9 • Public • Published

ImagesLoader

npm package

A flexible modern images-loader js plugin.

Samples

Introduction

Installation

Yarn

yarn add @pluginjs/images-loader

NPM

npm i @pluginjs/images-loader

Getting Started

CDN:

Development:

<script src="https://unpkg.com/@pluginjs/images-loader/dist/images-loader.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@pluginjs/images-loader/dist/images-loader.css">

Production:

<script src="https://unpkg.com/@pluginjs/images-loader/dist/images-loader.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@pluginjs/images-loader/dist/images-loader.min.css">

Initialize

HTML:

<div class="element"></div>

ECMAScript Module:

import ImagesLoader from "@pluginjs/images-loader"
import "@pluginjs/images-loader/dist/images-loader.css"

ImagesLoader.of(document.querySelector('.element'), options)

CommonJS:

require("@pluginjs/images-loader/dist/images-loader.css")
const ImagesLoader = require("@pluginjs/images-loader")

ImagesLoader.of(document.querySelector('.element'), options)

Browser:

<link rel="stylesheet" href="https://unpkg.com/@pluginjs/images-loader/dist/images-loader.css">
<script src="https://unpkg.com/@pluginjs/images-loader/dist/images-loader.js"></script>
<script>
  Pj.imagesLoader('.element', options)
</script>

API

Options

Options are called on imageLoader instances through the imageLoader options itself. You can also save the instances to variable for further use.

Name Description Default
"theme" Set plugin theme option null
"locale" Set locale environment en
"localeFallbacks" Set the plugin is localeFallbacks or not true
"selector" Img selector img

Events

Events are called on imageLoader instances through the imageLoader events itself. You can also save the instances to variable for further use.

Name Description
"ready" Gets fired when plugin has ready
"enable" Gets fired when plugin has enabled
"disable" Gets fired when plugin has disabled
"destroy" Gets fired when plugin has destroy

Methods

Methods are called on imageLoader instances through the imageLoader method itself. You can also save the instances to variable for further use.

Name Description
"load" Load image file
"onComplete" Get whether image was loaded
"finally" Get is finally
"onLoaded" Set onLoaded callback
"onError" Set error callback
"add" Add image
"enable" Enabled plugin if plugin is disabled
"disable" Disable plugin
"destroy" Destroy plugin

Classes

Name | Description | Default --|| "NAMESPACE" | Declare plugin namespace | pj-imageLoader "THEME" | Declare plugin theme | {namespace}--{theme}

Browser support

Tested on all major browsers.

IE / EdgeIE / Edge FirefoxFirefox ChromeChrome SafariSafari OperaOpera
IE11, Edge last 2 versions last 2 versions last 2 versions last 2 versions

License

@pluginjs/images-loader is Licensed under the GPL-v3 license.

If you want to use @pluginjs/images-loader project to develop commercial sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary.

For purchase an Commercial License, contact us purchase@thecreation.co.

Copyright

Copyright (C) 2022 Creation Studio Limited.

Readme

Keywords

none

Package Sidebar

Install

npm i @pluginjs/images-loader

Homepage

pluginjs.com

Weekly Downloads

0

Version

0.8.9

License

GPL-3.0

Unpacked Size

26.6 kB

Total Files

9

Last publish

Collaborators

  • thecreation
  • kaptinlin