Home > LateLoader

LateLoader

LateLoader is a project mainly written in JavaScript, it's free.

Lazy loading class

LateLoader

LateLoader is fully extensible lazy loading class.

Provides Lazy Loading for:

  • img tags
  • ajax zones
  • flash objects (Firefox/gecko only)

From tunable parameters:

  • Works both in Horizontal or Vertical scrolling
  • Based on Event or Poll methods (works without mouse scrolling)
  • Detection range extension (pre-loading)
  • 'Fast scrolling' protection (loads element only after n seconds on screen)

Requirements

VisibilityWatcher class

How to Use

Then just create an Instance on the target element(s)

#JS
new LateLoader.Img($$('img'));

And for the less common ones:

#JS
new LateLoader.Ajax('myajaxzone');

(see documentation for full setup)

#JS
new LateLoader.Object('myflashcontainer');

(see documentation for full setup)