Skip to content

SmallRuralDog/light-box

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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).