lumenpink/yii2-lightbox

用于Yii2的Lightbox小部件(从已删除的Yeesoft包备份而来)

安装: 5

依赖项: 0

建议者: 0

安全性: 0

星级: 0

关注者: 1

分支: 0

类型:yii2-extension

0.1.0 2023-01-28 16:10 UTC

This package is auto-updated.

Last update: 2024-09-28 20:03:53 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',
        ],
    ],
]);