yii2mod/yii2-bx-slider

Bx-slider widget based on bx-slider extension {@link http://bxslider.com)

Installs: 10 472

Dependents: 0

Suggesters: 0

Security: 0

Stars: 11

Watchers: 4

Forks: 4

Open Issues: 0

Type:yii2-extension

1.0 2015-07-24 13:46 UTC

This package is not auto-updated.

Last update: 2024-04-24 11:22:44 UTC


README

Widget based on BxSlider extension

Latest Stable Version Total Downloads License

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yii2mod/yii2-bx-slider "*"

or add

"yii2mod/yii2-bx-slider": "*"

to the require section of your composer.json.

Usage

Once the extension is installed, simply add widget to your page as follows:

// Video items
$items = [
   '<iframe src="https://www.youtube.com/embed/ES__vbRnN-A" frameborder="0"></iframe>',
   '<iframe src="https://www.youtube.com/embed/Ez_LIuE96-A" frameborder="0"></iframe>'
 ];
 
// Or image items
$items = [
   '<img src="/imagepath/imagename.jpg" alt="" title="Your image title">',
];
 
 echo yii2mod\bxslider\BxSlider::widget([
    'pluginOptions' => [
        'maxSlides' => 1,
        'controls' => false,
         // set video property to true, if in $items array exist videos
        'video' => true,
        'slideWidth' => 400,
         // usage events
        'onSliderLoad' => new yii\web\JsExpression('
            function() {
                alert("Slider load");
            },
        ')
     ],
    'items' => $items 
 ]); 

Slider Options

You can find them on the options page