Yii2 Swiper Widget ¶
Yii2 Swiper Widget
配置方便
同一个界面可以存在多个轮播,且不冲突
安装 ¶
php composer.phar require --prefer-dist kriss/yii2-swiper-widget "*" -vvv
"kriss/yii2-swiper-widget": "^1.0"
简单使用 ¶
显示轮播
<?php
use yii\helpers\Html;
echo \kriss\swiper\SwiperWidget::widget([
'slides' => [
Html::img('http://img.zcool.cn/community/01665258173c34a84a0d304fc68fdf.jpg'),
Html::img('http://img.zcool.cn/community/01665258173c34a84a0d304fc68fdf.jpg'),
Html::img('http://img.zcool.cn/community/01665258173c34a84a0d304fc68fdf.jpg'),
],
'pagination' => true,
'navigation' => true,
'scrollbar' => true,
'clientOptions' => [
'speed' => 200,
'loop' => true,
]
]);
高级使用 ¶
自定义操控,自定义js
<?php
use yii\helpers\Html;
// swiper js 初始化后赋值给的变量名
$swiperEl = 'swiper';
echo \kriss\swiper\SwiperWidget::widget([
'slides' => [
Html::img('http://img.zcool.cn/community/01665258173c34a84a0d304fc68fdf.jpg'),
Html::img('http://img.zcool.cn/community/01665258173c34a84a0d304fc68fdf.jpg'),
Html::img('http://img.zcool.cn/community/01665258173c34a84a0d304fc68fdf.jpg'),
],
'pagination' => true,
'navigation' => true,
'scrollbar' => true,
'swiperEl' => $swiperEl, // 在此处传入
'clientOptions' => [
'speed' => 200,
'loop' => true,
]
]);
// 下一个触发按钮
echo Html::button('next', ['id' => 'to-next']);
$js = <<<JS
// 点击之后触发下一个,更多js操作参考官方
$('#to-next').click(function() {
{$swiperEl}.slideNext();
});
JS;
$this->registerJs($js);
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.