kotchuprik / yii2-fotorama-widget
Fotorama widget for Yii2
Installs: 272
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-09 16:32:24 UTC
README
This widget is the wrapper for the Fotorama.
Usage
To call the widget you should use:
<?php $widget = \kotchuprik\fotorama\Widget::begin([ // you must specify the version (available versions http://cdnjs.com/libraries/fotorama) 'version' => '4.5.2', ]); ?> <img src="/img/1.jpg"/> <img src="/img/2.jpg"/> <img src="/img/3.jpg"/> <?php $widget->end(); ?>
To call the widget with the Fotorama options you should use:
<?php $widget = \kotchuprik\fotorama\Widget::begin([ 'version' => '4.5.2', 'options' => [ 'nav' => 'thumbs', ], 'htmlOptions' => [ 'class' => 'anotherCssClass', ], ]); ?> <img src="/img/1.jpg"/> <img src="/img/2.jpg"/> <img src="/img/3.jpg"/> <?php $widget->end(); ?>