baiachen / light-box

laravel-admin light-box扩展

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

laravel-admin 列表图片浏览扩展

  • 单图浏览
  • 多图浏览

安装

composer require smallruraldog/light-box

发布资源

php artisan vendor:publish --provider=SmallRuralDog\LightBox\LightBoxServiceProvider

配置

'extensions' => [
    'light-box' => [
        // Set to `false` if you want to disable this extension
        'enable' => true,
    ]
 ]

使用方法

// simple lightbox
$grid->picture()->lightbox();

//gallery
$grid->picture()->gallery();

//zoom effect
$grid->picture()->lightbox(['zooming' => true]);
$grid->picture()->gallery(['zooming' => true]);

//width & height properties
$grid->picture()->lightbox(['width' => 50, 'height' => 50]);
$grid->picture()->gallery(['width' => 50, 'height' => 50]);

当字段为数组时为多图浏览

预览

image

image

License

Licensed under The MIT License (MIT).

About

laravel-admin light-box扩展

License:MIT License


Languages

Language:CSS 63.9%Language:PHP 36.1%