Jquery backstretch widget for Yii2.
Backstretch Website: http://srobbin.com/jquery-plugins/backstretch/
"require": {
// ...
"linchpinstudios/yii2-backstretch": "*",
// ...
},
php composer.phar update
use linchpinstudios/backstretch;
<?php
echo Backstrech::widget([
'duration' => 3000,
'fade' => 750,
'clickEvent' => false,
'images' => [
['image' => 'http://dl.dropbox.com/u/515046/www/outside.jpg'],
['image' => 'http://dl.dropbox.com/u/515046/www/garfield-interior.jpg'],
['image' => 'http://dl.dropbox.com/u/515046/www/cheers.jpg'],
],
]);
?>
Comments