derhaeuptling/contao-lazy-images

This package is abandoned and no longer maintained. No replacement package was suggested.

Lazy Images delays loading of images in long web pages for Contao Open Source CMS.

Installs: 5 014

Dependents: 0

Suggesters: 0

Security: 0

Stars: 13

Watchers: 5

Forks: 3

Open Issues: 0

Type:contao-module

3.0.8 2020-02-18 21:15 UTC

This package is auto-updated.

Last update: 2020-03-17 17:48:53 UTC


README

No Maintenance Intended

DEPRECATED

This plugin was made to do two things:

  1. lazy load images
  2. prevent browser reflow whenever image dimensions become available

Both are now becoming solved by native browser support ... at least partially for now.

  1. native lazy loading

    The loading attribute <img loading="lazy"> brings native lazy loading to the browser.
    As of writing this, it is supported by Google Chrome & Microsoft Edge.
    more info:
    caniuse.com
    Firefox has plans for v75
    Safari is working on it too

  2. native image placeholder

    Img with and height attributes still work perfectly to paint a placeholder into which the image will be loaded.
    But whenever we added responsive css to our images, like by adding style="width: 100%; height: auto;", the browser where unable to paint the placeholder.

    But in the meantime, beginning with Firefox, the broswers now utilize the with and height img attributes to calculate an aspect ratio. With this aspect ratio modern browsers can now paint a placeholder.
    (actually this is the same, what this plugin does and the intrinsic ratio trick did back in 2009.)

    Source: https://www.youtube.com/watch?v=4-d_SoCHeWE

Thanks for having used this Plugin!

contao-lazy-images

Contao Plugin for lazyloading images with LazySizes.js without the disturbing reflow of the website, whenever an image is loaded.

Lazyloading images improves the website performance. Images no longer block the window.onload event.
Visible images in the viewport are loaded first and therefore faster.

To prevent the website reflow whenever an image is loaded a the configurable placeholder protects the place the image would take.

Several options are available in the generic contao settings:

  • Transparent placeholder
    a tiny transparent data:image placeholder with the correct aspect ratio is inlined.
  • Thumbnail placeholder
    a thumbnail data:image placeholder with the correct aspect ratio is inlined.
  • Intrinsic ratio (no placeholder needed)
    An intrinsic ratio container is created to preserve the correct dimenions for the loading image.
    This is the fastest and the most correct approach. As intrinsic ratios relay on CSS it may conflict with your theme.
  • Intrinsic ratio + thumbnail placeholder

The sizes of the placeholders and thumbnails can be adjusted.

Hint:the picture syntax with its sources is supported since 3.0.0, but only work with thumbails, not with instrinsic ratios.

Why preventing the reflow

Alt text

While the reflow is ugly and consumes computing power it also causes issues with JavaScript layout solutions.

JavaScript libs like Masonry or GreenSock position / layout elements respectively their dimensions.
If anything is changing those dimensions afterwards, like an image that got (lazy)loaded, the calculated layout breaks.

Using inline placeholders prevent those issues upfront.

LazySizes

LazySizes is a high performance and SEO friendly lazy loader for images (responsive and normal), iframes and more, that detects any visibility changes triggered through user interaction, CSS or JavaScript without configuration.