himiklab / yii2-colorbox-widget
Customizable lightbox widget for Yii2
Installs: 80 496
Dependents: 16
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 5
Open Issues: 1
Type:yii2-extension
Requires
- bower-asset/jquery-colorbox: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2022-01-12 15:39:05 UTC
README
A customizable lightbox jQuery plugin for Yii2 based on Colorbox.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require "himiklab/yii2-colorbox-widget" "*"
or add
"himiklab/yii2-colorbox-widget" : "*"
to the require section of your application's composer.json
file.
Usage
- In view:
use himiklab\colorbox\Colorbox; <?= Colorbox::widget([ 'targets' => [ '.colorbox' => [ 'maxWidth' => 800, 'maxHeight' => 600, ], ], 'coreStyle' => 2 ]) ?>