PHP code example of yii2mod / yii2-bx-slider

1. Go to this page and download the library: Download yii2mod/yii2-bx-slider library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

yii2mod / yii2-bx-slider example snippets


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

php composer.phar