yeesoft / yii2-lightbox
Yii2 的 Lightbox 小部件
0.1.0
2017-03-01 11:30 UTC
Requires
- bower-asset/lightbox2: ~2.8
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2022-03-29 00:26:04 UTC
README
Yii 2 的 Lightbox 小部件
此模块是 Lightbox2 的包装器
安装
通过 composer 安装此扩展是首选方式。
运行以下命令之一:
composer require --prefer-dist yeesoft/yii2-lightbox "~0.1.0"
或者将以下内容添加到您的 composer.json
文件的 require 部分:
"yeesoft/yii2-lightbox": "~0.1.0"
使用方法
扩展安装完成后,只需将小部件添加到您的页面中,如下所示:
use yeesoft\lightbox\Lightbox; echo Lightbox::widget([ 'options' => [ 'fadeDuration' => '2000', 'albumLabel' => "Image %1 of %2", ], 'linkOptions' => ['class' => 'pull-left'], 'imageOptions' => ['class' => 'thumbnail'], 'items' => [ [ 'thumb' => '/images/image01-120x90.jpg', 'image' => '/images/image01.jpg', 'title' => 'Image 1', 'group' => 'image-set1', ], [ 'thumb' => '/images/image02-120x90.jpg', 'image' => '/images/image02.jpg', 'title' => 'Image 2', 'group' => 'image-set1', ], ], ]);