branchonline/yii2-unslider

Unslider widget for Yii2

Installs: 4 664

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 10

Forks: 1

Open Issues: 0

Language:JavaScript

Type:yii2-extension

4.0.0 2019-12-13 13:03 UTC

This package is auto-updated.

Last update: 2024-04-13 21:56:06 UTC


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']
            ]
  ]]);