npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lazy-image-loader

v1.7.0

Published

Async image loading to decrease initial load time.

Downloads

33

Readme

Lazy Image Loader

Build Status Code Climate

Parses the DOM and looks for elements to load images in a deferred manner.

You have to create lazy image elements by the following rules to allow the lazy loader to reach them.

With the following setup, the lazy loader attempts to load an image from a generated url by creating an element and appending it into the lazy element. It tries to calculate the width of the parent element and set the following url as the src attribute of the newly generated element:

So, for example if the width of the parent element is 400px, the url becomes: http://example.com/400/path/to/your/image.jpg

<div class="lazy-image" data-path="/path/to/your/image.jpg"></div>

<script>
  $(window).load(function () {
    if ('LazyImageLoader' in window) {
      LazyImageLoader('http://example.com', {});
    }
  });
</script>

Installation

It supports browser environments and CommonJS format.

using npm:

$ npm install lazy-image-loader

in the browser:

<script src="lazy-image-loader.js"></script>

Usage

It's recommended to wait for the window's onload event.

lazy(host, [options]);

Lazy loader prefers leading slash when you set the path and please avoid to use trailing slash when you set the host.

commonjs:


var lazy = require('lazy-image-loader');
var $ = require('jquery');

$(window).load(function () {
  lazy('http://example.com', {});
});

browser:

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
  $(window).load(function () {
    if ('LazyImageLoader' in window) {
      LazyImageLoader('http://example.com', {});
    }
  });
</script>

Options

  • url (Function) - You can set your own url getter function. It gets two parameters: width and path.
  • className (String) - custom css class selector instead of .lazy-image
  • pathAttribure (String) - custom html attribute name instead of data-path
  • onBeforeSet (Function) - A function which is called before each lazy image loading. The callback gets the img as the first parameter.

A real-life usage example of the onBeforeSet hook:

It's pretty nice to put a blur effect on the image until it gets loaded. Actually, this is what the great antimoderate module does but we use a css approach here.

style.css

.blurry {
  filter: blur(3px);
}

my-blurry-module.js

var lazy = require('lazy-image-loader');
var loaded = require('image-loaded');

lazy({
  onBeforeSet: function(img) {
    img.classList.add('blurry');
      loaded(img, function() {
      img.classList.remove('blurry');
    });
  }
});

License

MIT © Purpose Industries