yii2mod/yii2-bx-slider
最新稳定版本:1.0
Composer 安装命令:
composer require yii2mod/yii2-bx-slider
包简介
Bx-slider widget based on bx-slider extension {@link http://bxslider.com)
README 文档
README
Widget based on BxSlider extension
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
统计信息
- 总下载量: 10.76k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-02