Skip to content

fasterize/lazyload

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lazyload

This image lazyloader is designed to help you save http requests on images.

Most of the time, when you have 100 images on a page, your user doesn't need them all.

This lazyloader will only load what is necessary.

It's a standalone script that weights ~1KB minified gzipped.

Using it in your project, website or any application

You should use the lazyload.min.js file from this repo. It has a line with licence information in it that is mandatory.

It helps us to be rewarded for our work and you to always have a link to this project.

How to use

  1. Add lazyload.min.js to your page before any <script> tag, either src or inline if you do not have any other scripts in the <head>.
  2. Change all <img> tags to lazyload :
  <img
    data-frz-src="real/image/src.jpg"
    src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
    onload=lzld(this) onerror=lzld(this) />
  1. Enjoy

Production ready? Yes.

Is it safe to use this piece of software? Don't trust us, trust them:

They all use lazyload for production websites and are happy with it. Customers told us that they cut page download size by 2!

Why another lazyload plugin

We could not find any standalone lazyloader but the one on stackoverflow.

We first used that one, then we re-wrote it entirely with ideas from mod_pagespeed lazyloader.

We're now upgrading our lazyload from time to time to make it more robust.

Browser support

IE6+ or modern browser.

IE6/7 originally does not support data uri:s images but using the onerror event on to-be-lazyloaded images, we're able to register the current image in the lazyloader. The only drawback is that you can have red crosses showing that original data uri:s image cannot be loaded. But well, it's old IE so no big deal.

You can have IE6/7 support without the hack, use the b.gif image instead of the data uri:s and remove onerror.

How does it work

We built our lazyloader with efficiency and speed in mind.

Many cases are handled, see test/.

We watch the domready event.

But if it takes too much time to fire, we use the <img onload=lzld(this) fallback that will fire before the domready event.

Scroll and resize events are throttled so that we do not run too often.

Adding to the <head> is mandatory otherwise we could not show images as fast as we want. And we would not be the first script to register to the domready event.

The base 64 src should be the smallest possible it is from http://probablyprogramming.com/2009/03/15/the-tiniest-gif-ever

Do not worry about the size overhead of adding a lot of base 64 src images to your page : GZIP is here to help (http://www.gzip.org/deflate.html).

Contact

If you want to automatically add lazyload to your website, contact us at http://fasterize.com

CMS integration

Licence

(The MIT Licence)

Copyright (c) 2012 Vincent Voyer, http://fasterize.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Standalone, fast & cross browser JavaScript image lazy loader

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 68.6%
  • JavaScript 31.4%