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
Requires
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2025-04-11 03:34:05 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',
]);