• Stars
    star
    1,891
  • Rank 23,756 (Top 0.5 %)
  • Language
    HTML
  • License
    MIT License
  • Created over 6 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Replace <img /> elements with <img-2> to automatically pre-cache images and improve page performance.

Img2

Replace <img /> elements with <img-2></img-2> to automatically pre-cache images and improve page performance. Displaying even a small number of high-quality images on a web page can be difficult to do without causing jank or slowing down the initial load of the page. This is why clever developers employ techniques with JavaScript to pre-cache images and lazy load them as they become visible on the user's screen.

Img2 makes this super easy, just swap out your <img /> elements with <img-2></img-2> and let it do the work for you.

Img2 will automatically:

  1. Only render initial images which are visible to the user
  2. Pre-cache all other images off the main thread with a Web Worker
  3. Lazy load images as they enter the user's viewport instantly from the cache
  4. Display a blurred preview image while the user waits for initial images

Live Demo


Install

npm install --save img-2

Usage

You can include Img2 into your project in various ways:

As a ES6 Module

import "img-2"

Via <script> as ES6

<script src="dist/img-2.js"></script>

Via <script> as ES5

<script src="dist/img-2.es5.js"></script>

Then you simply use the <img-2></img-2> element in place of an <img /> element.

    <body>
        <h1>Cat Photos</h1>
        <img-2 src="https://notreal.com/cat_1920x1080.jpg" width="400" height="267" src-preview="https://notreal.com/cat_10x10.jpg" alt="An amazing picture of a cat"></img-2>
    </body>

Attributes

There are currently five attributes available on Img2, three of which are required.

src

The full-size source image to be pre-cached and lazy loaded.

width & height

Both of these are required to figure out the position of the image on screen to then determine if the image should be loaded right away or lazily loaded.

src-preview

A really small representation of the full-size image (e.g. 10px by 10px). This image will be displayed as a blurred preview while the full-size image is downloading if the image hasn't already been pre-cached.

alt

The alt text for the image, just maps on to the alt attribute of the <img /> element used in the component.

Supported platforms &

Platform Support Chrome Chrome for Android Firefox Safari iOS Safari Edge IE 11
Supported ✓ ✓ ✓ ✓ ✓ ✓ ✓
Polyfill(s) Required - - ✓ ✓ ✓ ✓ ✓

Img-2 uses the Intersection Observer to detect when an image is in the users visible viewport. For Safari and IE 11 you'll need to load the Intersection Observer polyfill.

<script src="https://polyfill.io/v2/polyfill.min.js?features=IntersectionObserver"></script>

Img-2 uses Custom Elements and Shadow DOM so for FireFox, Edge and IE11 you'll need to use the webcomponents-loader from webcomponentsjs.

<script src="bower_components/webcomponentsjs/webcomponents-loader.js"></script>

If you need to support IE11 which doesn't support ES6 you'll want to conditionally load img-2.es5.js.

var supportsES6 = function() {
    try {
        new Function("(a = 0) => a");
        return true;
    }
    catch (err) {
        return false;
    }
}();

var $script = document.createElement("script");
$script.setAttribute("defer", "");
$script.src = (supportsES6 === true) ? "dist/img-2.js" : "dist/img-2.es5.js";
document.head.appendChild($script);

Take a look at index.html in the root of this repo for further examples.

Contributing

Any contributions are welcome, feel free to submit a pull request for review.

To Do

  1. Add srcset support
  2. Consider A11y

More Repositories

1

angularjs-by-example

An example application to demonstrate a wide range of AngularJS best practices
CSS
129
star
2

angular-preload-image

A simple AngularJS module to make it easy to pre-load images.
70
star
3

angularjs-tutorial

Learn AngularJS in 30 minutes with this simple tutorial.
HTML
26
star
4

es2015-web-component-tutorial

Learn how to build web components using the next version of JavaScript and reap the rewards.
JavaScript
11
star
5

rebel-router

A lightweight JavaScript router written for ultra-modern web applications where web components are first class citizens.
JavaScript
11
star
6

rebel-repeater

A web component inspired by ngRepeat from the AngularJS framework.
JavaScript
10
star
7

rebel-tag-input

A tag input written as a web component using ES2015.
JavaScript
7
star
8

web-component-tutorial

Learn how to build web components using vanilla JS.
HTML
7
star
9

bootstrap-tutorial

Bootstrap tutorial – A responsive design tutorial with Twitter Bootstrap 3
CSS
5
star
10

my-first-webcomponent

A simple WebComponent example in vanilla JavaScript
HTML
3
star
11

rebel-progress-bar

A simple progress bar vanilla web component.
JavaScript
1
star
12

audio-snippets

JavaScript
1
star
13

rebel-router-examples

A set of examples to support the rebel-router project.
JavaScript
1
star
14

twitter-vids

A simple web app built to challenge the need for a monolithic framework in favour of web components and micro-libraries.
CSS
1
star
15

web-component-app

A simple app written using Vanilla JS and Web Components
HTML
1
star
16

rebel-slide-menu

A slide menu web component.
JavaScript
1
star
17

multiline-ellipsis

An experiment with IntersectionObserver and multiline ellipsis.
JavaScript
1
star
18

go-and

A simple, lightweight, plug and play HTTP library written in ES2015.
JavaScript
1
star
19

es2015-modules-with-babel

A simple demonstration of how to write ES2015 modules with the help of Babel to transpile to SystemJS and ES5.
JavaScript
1
star