Plugin Directory

Changeset 2086841


Ignore:
Timestamp:
05/13/2019 12:56:02 PM (7 years ago)
Author:
fayne
Message:

Readme description

File:
1 edited

Legend:

Unmodified
Added
Removed
  • be-lazy/trunk/readme.txt

    r2086832 r2086841  
    1313== Description ==
    1414
    15 Enhance your website speed by lazy loading images.
    16 
    17 # What is lazy loading?
     15## What is lazy loading?
    1816
    1917*«Lazy loading is technique that defers loading of non-critical resources at page load time. Instead, these non-critical resources are loaded at the moment of need.»*
    20 **- Jeremy Wagner, Google Developer**
     18- Jeremy Wagner, Google Developer
    2119
    2220In other words: Lazy loading images makes them being loaded asynchronously which makes it possible to load them conditionally (e.g. when they are within the client's viewport).
    2321In doing so, you will prevent your clients from downloading images they would never see anyway.
    2422
    25 # What are the advantages?
     23## What are the advantages?
    2624
    2725The main advantages for your clients are:
    2826
    29 ## 1. Reduced page load time
     27### 1. Reduced page load time
    3028
    3129Having to initially load less resources, naturally reduces the loading duration.
    3230This will be more noticeable the more images you have on your website and may have a critical impact on your client's experience as well as your SEO ranking.
    3331
    34 ## 2. Smaller page size
     32### 2. Smaller page size
    3533
    3634It's possible that your client will not scroll down to the very bottom of the page and therefore not load all images.
Note: See TracChangeset for help on using the changeset viewer.