ziya / ziya-lazy-image
Package for lazy loading images.
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/ziya/ziya-lazy-image
Requires
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2025-12-11 04:47:20 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',
]);