bigpaulie / yii2-fancybox
Yii2 FancyBox extension
Installs: 1 046
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.4.0
- bower-asset/fancybox: ~2.1
- yiisoft/yii2: 2.*
This package is auto-updated.
Last update: 2024-10-29 04:47:36 UTC
README
Yii2 FancyBox 2 extension
FancyBox is a tool that offers a nice and elegant way to add zooming functionality for images, html content and multi-media on your webpages. It is built on the top of the popular JavaScript framework jQuery and is both easy to implement and a snap to customize.
Form more information on how to use FancyBox please go to their website http://fancyapps.com/fancybox/
Install
The preferred way of installing is through composer
composer require --prefer-dist bigpaulie/yii2-fancybox "dev-master"
OR add to composer.json
"bigpaulie/yii2-fancybox": "dev-master"
Example usage :
use bigpaulie\fancybox\FancyBox;
Images
echo FancyBox::widget([ 'type' => 'image', 'item' => [ 'href' => 'url_to_thumbnail', 'src' => 'url_to_big_image', ], ]);
Inline content
echo FancyBox::widget([ 'type' => 'inline', 'item' => [ 'href' => '#myInline', 'text' => 'click here', ], ]);
<div style="display:none;"><p id="#myInline">This is my inline content !</p></div>
Ajax
echo FancyBox::widget([ 'type' => 'ajax', 'item' => [ 'href' => 'http://example.com/ajax.php', 'text' => 'click here', ], ]);
OR
echo FancyBox::widget([ 'type' => 'ajax', 'item' => [ 'href' => Url::to(['site/ajax']), 'text' => 'click here', ], ]);
Media
echo FancyBox::widget([ 'type' => 'media', 'item' => [ 'href' => 'https://www.youtube.com/watch?v=YE7VzlLtp-4', 'text' => 'click here', ], 'clientOptions' => [ 'helpers' => [ 'media' => true, ], ], ]);