ziya/ziya-lazy-image

There is no license information available for the latest version (0.2) of this package.

Package for lazy loading images.

0.2 2019-06-10 10:01 UTC

This package is auto-updated.

Last update: 2024-05-11 01:37:09 UTC


README

Widget for Yii2 framework projects. To lazyload big images.

composer require ziya/ziya-lazy-image "^0.2"

Examples

 <?php
    echo LazyImage::widget([
            'options' => [          
                'alt'=>'Just image'                
            ], 
            'preloadImage' => 'https://link-to-thumb-image', // if null will be replaced with svg animation
            'src' => 'https://link-to-big-images',            
    ]);