PHP code example of kowap / yii2-lightgallery
1. Go to this page and download the library: Download kowap/yii2-lightgallery library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kowap / yii2-lightgallery example snippets
echo \kowap\lightgallery\LightGalleryWidget::widget([
'items' => [
[
'thumb' => '../thumb/image_1.jpg',
'src' => '../big/image_1.jpg'
],
[
'thumb' => '../thumb/image_2.jpg',
'src' => '../big/image_2.jpg'
]
],
// more options http://sachinchoolur.github.io/lightGallery/docs/api.html
'options' => [
'mode' => 'lg-zoom-in-big',
'download' => false,
'zoom' => false,
'share' => false
]
]);