bestyii / yii2-swiper
Yii2 extension for Swiper slider
6.0.0
2023-01-16 09:56 UTC
Requires
- php: >=5.4.0
- bower-asset/swiper: ^v6.0.0
- yiisoft/yii2: ~2.0
Requires (Dev)
- phpunit/phpunit: 4.8.x-dev
README
Yii2 widget for Swiper slider. See more here: https://github.com/nolimits4web/Swiper/.
You can find examples in demos folder.
Also you can read documentation.
Installation
You can get this extension through Composer.
Before install config composer repositories
"repositories": {
"0": {
"type": "composer",
"url": "https://asset-packagist.org"
}
}
Either run in terminal
$ php composer.phar require "bestyii/yii2-swiper" "*"
or add
"bestyii/yii2-swiper" : "*"
to the require section of your application's composer.json
file.
###Usage
<?php /** * @var \yii\web\View $this */ use bestyii\swiper\Swiper; echo Swiper::widget( [ 'items' => [ [ 'background' => 'http://lorempixel.com/600/600/nature/1' ], [ 'background' => 'http://lorempixel.com/600/600/nature/2' ], [ 'background' => 'http://lorempixel.com/600/600/nature/3' ], [ 'background' => 'http://lorempixel.com/600/600/nature/4' ], [ 'background' => 'http://lorempixel.com/600/600/nature/5' ] ], 'behaviours' => [ 'pagination' ], 'pluginOptions' => [ 'grabCursor' => true, 'centeredSlides' => true, 'slidesPerView' => 'auto', 'effect' => 'coverflow', 'coverflow' => [ 'rotate' => 50, 'stretch' => 0, 'depth' => 100, 'modifier' => 1, 'slideShadows' => true ] ] ] );
Issues
If some problems occurred, you can create issue.
Thank you for attention.