Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 547 Bytes

carousel.md

File metadata and controls

30 lines (22 loc) · 547 Bytes

Carousel组件

Encore\Admin\Widgets\Carousel用来生成滑动相册组件:

use Encore\Admin\Widgets\Carousel;

$items = [
    [
        'image' => 'http://xxxx/xxx.jpg',
        'caption' => 'xxxx',
    ],
    [
        'image' => 'http://xxxx/xxx.jpg',
        'caption' => 'xxxx',
    ],
    [
        'image' => 'http://xxxx/xxx.jpg',
        'caption' => 'xxxx',
    ],
];

$carousel = new Carousel($items);

echo $carousel->render();

Carousel::__construct($items)$items参数设置滑动相册的内容元素。