- Reorganized code
- Improved native lazy loading demos
- Aligned console messages throughout all demos.
- Added the
use_native
option which enables native lazy loading (where supported) with theloading="lazy"
attribute. See #331 - Added two demos:
- native_lazyload_conditional.html which you can use to test the
use_native
option - native_lazyload.html which always uses native lazy loading (without JS) just to test how it works beyond the LazyLoad script
- native_lazyload_conditional.html which you can use to test the
- Refactored the constructor and the
update
method
Restored the callback_set
callback as deprecated, in order to make the upgrade from v.10 easier.
Fixed the module
property of this package.json, which was pointing to a non-existing dist file.
Fixed the main
property of this package.json, which was pointing to a non-existing dist file.
Rollback of the patch applied in 11.0.2 since it gave strange results in some cases. See #293. Thanks to @davejamesmiller for the analysis and the report.
Applied a patch to resolve #293 a Chromium bug already fixed in Chrome 72. Thanks to @dverbovyi for the analysis and the report.
Squashed a nasty bug that occurred on IE 11 and Safari when the IntersectionObserver
polyfill wasn't loaded before LazyLoad.
- Changed bundle file name of ES Module from
lazyload.es2015.js
tolazyload.esm.js
- Removed the
to_webp
option (see issue #288) - Ceased support and development of LazyLoad v.8 (see issue #306)
version. If you were using it, please update your code to use
callback_reveal
instead. - Private methods like
_setObserver
,_onIntersection
etc. are now hidden from the outside. - Added the
auto_unobserve
boolean option, see API. - Bugfix:
loadAll()
didn't unobserve elements. - Updated to Jest 24, Babel 7, etc.
- Fixed dev dependencies vulnerabilities
- Updated callbacks. See below:
Callbacks updated:
- Changed
callback_enter
. This callback is now called whenever an element enters the viewport, even whenload_delay
is set. In previous versions, this callback was delayed until an element started loading if aload_delay
was set. Note that this is a possible breaking change, which you can fix usingcallback_reveal
instead. - Added
callback_exit
. This callback is called whenever an element exits the viewport, even if aload_delay
is set. - Added
callback_reveal
. This callback is called just after an element starts loading. - Deprecated
callback_set
. This callback still works*, but will be removed in the next major
* it didn't work from versions 11.0.0 to 11.0.5, it still works from 11.0.6.
Fixed a bug for which LazyLoad didn't copy the data-sizes
attribute value to sizes
in source
tags inside picture
. See #307.
Improved WebP detection to work correctly on Firefox too, see #298.
Thanks to @ipernet for contributing.
- Fixed build for those using React + SSR, see #287
- TypeScript definitions clearified, see #283
- Gulp updated to v.4.0.0 to make it work with node 10
Thanks to @AlexCSR and @muturgan for contributing.
- Added the ability to know when all images have been downloaded through the
callback_finish
callback. - Added the file
demos/print.html
to demo how to print lazy images.
Added the ability to have multiple background images, through the new data_bg
option.
Added the ability to set different thresholds for the scrolling area, through the new thresholds
option.
BUGFIX: Class loaded
was not applied to a loaded video (issue #239).
BUGFIX: Autoplaying video not loaded correctly after entering the viewport (issue #240). Thanks to @maeligg.
Added new option load_delay
to skip loading when fast scrolling occurs, as requested in issues #235 and #166.
Pass in a number of milliseconds, and each image will be loaded after it stayed inside that viewport for that time.
- Refactorized code & improved script performance
- BUGFIX: Fixed webpack import (issue #230)
TypeError: default is not a constructor
Now supporting WebP through dynamic extension rename if the user browser is compatible.
- Shortened the RegEx for crawlers detection (shaved a few bytes)
- Released LazyLoad in new module types! Enjoy the new flavours :)
Filename | Module Type | Advantages |
---|---|---|
lazyload.min.js |
UMD (Universal Module Definition) | Works pretty much everywhere, even in common-js contexts |
lazyload.iife.min.js |
IIFE (Immediately Invoked Function Expression) | Works as in-page <script src=""> , ~0.5kb smaller minified |
lazyload.amd.min.js |
AMD (Asynchronous Module Definition) | Works with the require.js module loader, ~0.5kb smaller minified |
lazyload.es2015.js |
ES Module type | Exports LazyLoad so you can import it in your project |
SEO! Expanded SEO-friendliness to more crawlers, Bingbot included.
BUGFIX: Fixed issue #225. Due to mistyped BOT detection, in version 10.11.0 all images were loaded as soon as LazyLoad
was created.
SEO! Version 10.x is now as SEO-friendly as version 8.x.
Added a public load
method to force loading any element.
Added the ability to lazily set the sizes
attribute via a data-sizes
attribute.
See the README file for more information.
Added a public loadAll
method to force loading all the images, as asked in #193.
- Added support for the
<video>
HTML tag and descending<source>
tags. Now you can lazily load your videos too! - Created the
video.html
demo.
- Added a demo with a popup layer and images injected after popup open, to help with #196.
- Updated the
background_images
demo with a custom management of the loading class and the loaded event callback.
Added a security check on lazy elements' parents.
Just a refactoring over previous version.
Added node support by merging pull request #188, "node-support" by @klarstrup.
With these changes in place, simply importing vanilla-lazyload without using it won't crash Node by itself. This is important for isomorphic/universal/server rendered setups where the same code runs on both the server and the browser.
Fixed a bug for which sometimes images wouldn't reveal on Chrome 65 (see issue #165).
Updated dist
folder.
Added the callback_enter
callback, which is called whenevery any element managed by LazyLoad enters the viewport, as requested in #159. Thanks to @alvarotrigo.
Fixed tests to match dataset revert made in 10.3 and 8.2 (oopsy).
Fixed a bug that could occur on older versions of IE when trying to access an image's parent node.
Fixed a CustomEvent bug which occurred on IE when using async object initialization.
Fixed supportsClassList
test to work even when the document
object isn't yet there. Thanks to @Spone and his pull request #145.
Introduced a workaround for an issue of Microsoft Edge documented here
Restored support to IE9 and IE10, as requested in #118 and #132.
To solve cases when you can't select the elements to load using a string, added the ability to pass a NodeList
object...
- as a second parameter in the constructor, after the regular option object, e.g.
var ll = new Lazyload({}, myNodeList)
- as a single parameter to the
update()
method, e.g.ll.update(myNodeList)
To solve cases when you can't select the elements to load using a string, added the ability to pass a NodeList
object to the elements_selector
option, as suggested by @SassNinja in #130.
Solved a problem with cdnjs.com: version 10.0.0 was pointing to 9.0.0.
- Change in default options:
- default for
data_src
is nowsrc
(wasoriginal
) - default for
data_srcset
is nowsrcset
(wasoriginal-set
)
- default for
- Restored tests using Jest
- Squashed a bug which didn't make images inside
picture
load correctly
LazyLoad is now faster thanks to the Intersection Observer API.
IMPORTANT! Browser support changed. Find more information in the README file.
- Added the ability to know when all images have been downloaded through the
callback_finish
callback. - Added the file
demos/print.html
to demo how to print lazy images.
Added the ability to have multiple background images, through the new data_bg
option.
BUGFIX: Class loaded
was not applied to a loaded video (issue #239).
BUGFIX: Autoplaying video not loaded correctly after entering the viewport (issue #240). Thanks to @maeligg.
- Refactorized code & improved script performance
- BUGFIX: Fixed webpack import (issue #230)
TypeError: default is not a constructor
Now supporting WebP through dynamic extension rename if the user browser is compatible.
- Shortened the RegEx for crawlers detection (shaved a few bytes)
- Released LazyLoad in new module types! Enjoy the new flavours :)
Filename | Module Type | Advantages |
---|---|---|
lazyload.min.js |
UMD (Universal Module Definition) | Works pretty much everywhere, even in common-js contexts |
lazyload.iife.min.js |
IIFE (Immediately Invoked Function Expression) | Works as in-page <script src=""> , ~0.5kb smaller minified |
lazyload.amd.min.js |
AMD (Asynchronous Module Definition) | Works with the require.js module loader, ~0.5kb smaller minified |
lazyload.es2015.js |
ES Module type | Exports LazyLoad so you can import it in your project |
SEO! Expanded SEO-friendliness to more crawlers, Bingbot included.
Added a public load
method to force loading any element.
Added the ability to lazily set the sizes
attribute via a data-sizes
attribute.
See the README file for more information.
Added a public loadAll
method to force loading all the images, as asked in #193.
Added support for the video
tag. Closes #209.
Created the video.html
demo.
Added a security check on lazy elements' parents.
Added node support by merging pull request #188, "node-support" by @klarstrup.
With these changes in place, simply importing vanilla-lazyload without using it won't crash Node by itself. This is important for isomorphic/universal/server rendered setups where the same code runs on both the server and the browser.
Added the callback_enter
callback, which is called whenevery any element managed by LazyLoad enters the viewport, as requested in #159. Thanks to @alvarotrigo.
Fixed a bug that could occur on older versions of IE when trying to access an image's parent node.
Fixed a CustomEvent bug which occured on IE when using async object initialization.
- Change in default options, in order to be aligned with version 10
- default for
data_src
is nowsrc
(wasoriginal
) - default for
data_srcset
is nowsrcset
(wasoriginal-set
)
- default for
Fixed supportsClassList
test to work even when the document
object isn't yet there. Thanks to @Spone and his #145.
Restored support to IE9 and IE10, as requested in #118 and #132.
Updated from grunt to gulp (run with gulp scripts).
Added quotes in background image URLs, as suggested in #114 (thanks to @vseva).
Fixed a bug that affected performance.
Fixed reference to old names in demo files.
- The main file to include is now
dist/lazyload.min.js
as you would expect, and no longerdist/lazyload.transpiled.min.js
. - The non-transpiled version is now named lazyload.es2015.js
- Now using
element.dataset
to read data attributes - New readme! New website!
Bug fixes:
- Fixed #87
IMPORTANT! Browser support changed. Find more information in the README file.
- Refactored code now using more modules
- Saving ~0.5 kb of transpiled code going back from ES2015
class
to function'sprototype
Source code converted to ES2015 modules, bundled with rollup.js and transpiled with babel.
Added the class initial to all images (or iframes) inside the viewport at the moment of script initialization
- Added the ability to load LazyLoad using an async script
SEO improvements for lazily loaded images
- Source code migrated to ES6 / ES2015
- Serving both minified ES6 version and minified transpiled-to-ES5 version
- Exposed private functions for test coverage
- Test coverage
- Lighter constructor
- Performance improvements
- Bugfix: null on background images
- Removed code for legacy browsers - now supporting IE10+
- Added support to the picture tag
- Removed the "show image only when fully loaded" mode
- Dumped the show_while_loading and placeholder options
- Added support to lazily load iframes and background images
- Added error management callback and error class option
- Performance improvements
- Added support to the srcset attribute for images
- Added typescript typings + updated dist folder files
- Performance improvements
- Stable release of LazyLoad
Want more detail? Take a look at the release history on GitHub!