sampa / yii2-gallery-widget
适用于 Yii 框架的 Blueimp 画廊小部件
dev-master / 1.0.x-dev
2017-05-03 16:47 UTC
Requires
- bower-asset/blueimp-gallery: ~2.17.0
- yiisoft/yii2: ~2.0.0
Requires (Dev)
- phpunit/phpunit: ~4.0
- scrutinizer/ocular: ~1.1
This package is not auto-updated.
Last update: 2024-09-27 23:32:15 UTC
README
渲染 BlueImp 画廊和/或 滚动。BlueImp 画廊是一个支持触摸、响应式和可定制的图片和视频画廊、滚动和灯箱,针对移动和桌面网页浏览器进行了优化。它具有滑动、鼠标和键盘导航、过渡效果、幻灯片功能、全屏支持以及按需内容加载,并且可以扩展以显示更多内容。
有关更多信息,请访问 http://blueimp.github.io/Gallery/
安装
通过 composer 安装此扩展是首选方法。
运行以下命令之一
$ composer require 2amigos/yii2-gallery-widget:~1.0
或
"2amigos/yii2-gallery-widget": "~1.0"
将以下内容添加到您的 composer.json
文件的 require
部分。
用法
使用带灯箱的画廊
// on your view
<?php $items = [
[
'url' => 'http://farm8.static.flickr.com/7429/9478294690_51ae7eb6c9_b.jpg',
'src' => 'http://farm8.static.flickr.com/7429/9478294690_51ae7eb6c9_s.jpg',
'options' => array('title' => 'Camposanto monumentale (inside)')
],
[
'url' => 'http://farm3.static.flickr.com/2863/9479121747_0b37c63fe7_b.jpg',
'src' => 'http://farm3.static.flickr.com/2863/9479121747_0b37c63fe7_s.jpg',
'options' => array('title' => 'Hafsten - Sunset')
],
[
'url' => 'http://farm4.static.flickr.com/3712/9478186779_81c2e5f7ef_b.jpg',
'src' => 'http://farm4.static.flickr.com/3712/9478186779_81c2e5f7ef_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
[
'url' => 'http://farm4.static.flickr.com/3789/9476654149_b4545d2f25_b.jpg',
'src' => 'http://farm4.static.flickr.com/3789/9476654149_b4545d2f25_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
[
'url' => 'http://farm8.static.flickr.com/7429/9478868728_e9109aff37_b.jpg',
'src' => 'http://farm8.static.flickr.com/7429/9478868728_e9109aff37_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
[
'url' => 'http://farm4.static.flickr.com/3825/9476606873_42ed88704d_b.jpg',
'src' => 'http://farm4.static.flickr.com/3825/9476606873_42ed88704d_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
[
'url' => 'http://farm4.static.flickr.com/3749/9480072539_e3a1d70d39_b.jpg',
'src' => 'http://farm4.static.flickr.com/3749/9480072539_e3a1d70d39_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
[
'url' => 'http://farm8.static.flickr.com/7352/9477439317_901d75114a_b.jpg',
'src' => 'http://farm8.static.flickr.com/7352/9477439317_901d75114a_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
[
'url' => 'http://farm4.static.flickr.com/3802/9478895708_ccb710cfd1_b.jpg',
'src' => 'http://farm4.static.flickr.com/3802/9478895708_ccb710cfd1_s.jpg',
'options' => array('title' => 'Sail us to the Moon')
],
];?>
<?= dosamigos\gallery\Gallery::widget(['items' => $items]);?>
// ...
使用带 Json 编码项目的滚动
// on your view
<?php $items = [
[
'title' => 'Sintel',
'href' => 'http://media.w3.org/2010/05/sintel/trailer.mp4',
'type' => 'video/mp4',
'poster' => 'http://media.w3.org/2010/05/sintel/poster.png'
],
[
'title' => 'Big Buck Bunny',
'href' => 'http://upload.wikimedia.org/wikipedia/commons/7/75/Big_Buck_Bunny_Trailer_400p.ogg',
'type' => 'video/ogg',
'poster' => 'http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Big.Buck.Bunny.-.Opening.Screen.png/' .
'800px-Big.Buck.Bunny.-.Opening.Screen.png'
],
[
'title' => 'Elephants Dream',
'href' => 'http://upload.wikimedia.org/wikipedia/commons/transcoded/8/83/Elephants_Dream_%28high_quality%29.ogv/' .
'Elephants_Dream_%28high_quality%29.ogv.360p.webm',
'type' => 'video/webm',
'poster' => 'http://upload.wikimedia.org/wikipedia/commons/thumb/9/90/Elephants_Dream_s1_proog.jpg/' .
'800px-Elephants_Dream_s1_proog.jpg'
],
[
'title' => 'LES TWINS - An Industry Ahead',
'href' => 'http://www.youtube.com/watch?v=zi4CIXpx7Bg',
'type' => 'text/html',
'youtube' => 'zi4CIXpx7Bg',
'poster' => 'http://img.youtube.com/vi/zi4CIXpx7Bg/0.jpg'
],
[
'title' => 'KN1GHT - Last Moon',
'href' => 'http://vimeo.com/73686146',
'type' => 'text/html',
'vimeo' => '73686146',
'poster' => 'http://b.vimeocdn.com/ts/448/835/448835699_960.jpg'
]
];?>
<?= dosamigos\gallery\Carousel::widget([
'items' => $items, 'json' => true,
'clientEvents' => [
'onslide' => 'function(index, slide) {
console.log(slide);
}'
]]);
// ...
测试
$ ./vendor/bin/phpunit
贡献
请参阅 CONTRIBUTING 获取详细信息。
致谢
许可证
BSD 许可证 (BSD)。请参阅 许可证文件 获取更多信息。
网络、移动开发和设计
www.2amigos.us