branchonline / yii2-unslider
Unslider widget for Yii2
Installs: 4 750
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 10
Forks: 1
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- yiisoft/yii2: *
README
Unslider slider widget for Yii2
Installation
Add the following to require
section of your composer.json
:
"branchonline/yii2-unslider": "*"
and run composer install
.
Usage
use branchonline\unslider\Unslider; echo Unslider::widget([ 'options' => [ 'nav' => false, 'keys' => true, 'fluid' => true ], 'slides' => [ [ 'img' => 'http://unslider.com/img/sunset.jpg', 'title' => 'Yii2 PHP Framework', 'body' => 'Unslider widget for Yii2', 'button' => ['title' => 'Title', 'href' => '#href', 'class' => 'btn'] ], [ 'img' => 'http://unslider.com/img/subway.jpg', 'title' => 'Another image', 'body' => 'description', 'button' => ['title' => 'Title', 'href' => '#href', 'class' => 'btn'] ] ]]);