An elevate zoom widget for Yii2 based on Elevate Zoom.
THIS IS A FORK OF amilna/yii2-elevatezoom DIFFERENCE: I have removed the thumbnail (aka gallery) options as I do not need that).
The preferred way to install this extension is through composer.
Either run
php composer.phar require "gb5256/yii2-elevatezoom" "*"
or add
"gb5256/yii2-elevatezoom" : "*"
to the require section of your application's composer.json
file.
in View
use gb5256\elevatezoom\ElevateZoom;
$images = ['an url of zoom image 1','an url of zoom image n'];
echo ElevateZoom::widget([
'images'=>$images,
'baseUrl'=>Yii::$app->urlManager->baseUrl.'/upload',
'smallPrefix'=>'/.thumbs',
'mediumPrefix'=>'',
]);
/* //or another example set 'images' with 3 dimension array:
$images'= [
[
'image'=>'an url of zoom image 1',
'small'=>'an url of gallery display image 1',
'medium'=>'an url of basic display image 1'
],
[
'image'=>'an url of zoom image n',
'small'=>'an url of gallery display image n',
'medium'=>'an url of basic display image n'
],
];
echo ElevateZoom::widget([
'images'=>$images,
]);
*/
'images' is array of images (1 or 3 dimensions, if 1 dimensions then you should set baseUrl, smallPrefix and mediumPrefix) or activeDataProvider (if activeDataProvider you should set imageKey, smallKey and mediumKey)
available options:
- images
- css (custom css)
- baseUrl (string basic replacer of image url)
- smallPrefix (string replacer to get small size image url)
- mediumPrefix (string replacer to get medium size image url)
- imageKey (model atribute that store zoom size image)
- smallKey (model atribute that store small size image)
- mediumKey (model atribute that store medium size image)
- targetId (custom container id)
- options (please see examples)