_image_gallery.php 1.15 KB
<div class="kites-gallery-wr">
    <ul id="gallery">
        <?php foreach($model->getGallery() as $image): ?>
            <li class="small_items">
                <a href="<?= $model->minImg($image, 'original'); ?>" title="" data-options="thumbnail: '<?= $image ?>'" class="thumbnail">
                    <img src="<?= $image; ?>" alt="" >
                </a>
            </li>
        <?php endforeach; ?>
    </ul>
</div>



<script type="text/javascript">

    $(function() {
        $('.thumbnail').iLightBox(
            {
                skin: 'metro-black',
                path: 'horizontal',
                maxScale: 1.3,
                overlay: {
                    opacity: .8
                },
                styles: {
                    nextOffsetX: 75,
                    nextOpacity: .55,
                    prevOffsetX: 75,
                    prevOpacity: .55
                },
                thumbnails: {
                    normalOpacity: .9,
                    activeOpacity: 1
                },
                controls: {
                    thumbnail: 1,
                    arrows: 1
                }
            });
    });

</script>