Lightweight, no dependency library for lazy image load. jQuery plugin is also provided.
- Duplicate element check
- Throttled event handler
- Percentage threshold
Use data-src attribute for actual image. This attribute name can be changed by calling Tada.setup method.
If that attribute is used in non <img> tag, image will be background image.
<img src="placeholder.png" data-src="original.png">
<div data-src="background.png"></div>/* CSS selector */
Tada.add('ul img');
/* HTML element */
var img = document.createElement('img');
img.setAttribute('src', 'placeholder.png')
img.setAttribute('data-src', 'original.png');
Tada.add(img);
/* jQuery */
$('img').tada();CSS selector of no dependency version must be CSS 2.1 selectors in Internet Explorer 8.
If you want to change default settings, call Tada.setup method before using Tada.add.
Tada.setup({
attribute: 'data-src',
delay: 50,
threshold: '20%',
callback: function(element) {
console.log(element);
}
}
});
$('img').tada();| name | default | unit | description |
|---|---|---|---|
| attribute | data-src |
attribute name for image url | |
| delay | 50 |
milliseconds | delay for scroll event activation |
| threshold | 20% |
% or px. px can be omitted | margin for early loading |
| callback | function(element) {} |
callback after image loaded. |
Internet Explorer 8+ and other major browsers are supported.