2017 © Pedro Peláez
 

magento2-module lightgallery

Magento module wrapper for LightGallery

image

msp/lightgallery

Magento module wrapper for LightGallery

  • Monday, October 24, 2016
  • by magespecialist
  • Repository
  • 4 Watchers
  • 1 Stars
  • 5,897 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 12 % Grown

The README.md

Magento 2 LightGallery module

PHP version, (*1)

This module lets you use LightGallery with Magento 2 throught requirejs., (*2)

Installation

composer require msp/lightGallery
bin/magento module:enable MSP_LightGallery
bin/magento setup:upgrade

Usage

You must include the css via layout XML, for example if you want to use the gallery in the product page add to catalog_product_view.xml:, (*3)

<head>
    ...
    <css src="MSP_LightGallery::css/lightgallery.min.css"/>
    ...
</head>

You can init the gallery with data-mage-init:, (*4)

<div id="your-gallery" data-mage-init='{
    "LightGallery": {
        "thumbnail":true
    }
}'>
    <a href="img/kitten1.jpg">
        <img src="img/kitten1-thumb.jpg" />
    </a>
    <a href="img/kitten2.jpg">
        <img src="img/kitten2-thumb.jpg" />
    </a>
    <a href="img/kitten3.jpg">
        <img src="img/kitten3-thumb.jpg" />
    </a>
</div>

or with a <script type="text/x-magento-init">:, (*5)

<div id="your-gallery">
    <a href="img/kitten1.jpg">
        <img src="img/kitten1-thumb.jpg" />
    </a>
    <a href="img/kitten2.jpg">
        <img src="img/kitten2-thumb.jpg" />
    </a>
    <a href="img/kitten3.jpg">
        <img src="img/kitten3-thumb.jpg" />
    </a>
</div>
<script type="text/x-magento-init">
     {
         "#your-slider": {
             "LightGallery": {
                "thumbnail":true
             }
         }
     }
 </script>

The Versions

24/10 2016

dev-master

9999999-dev

Magento module wrapper for LightGallery

  Sources   Download

OSL 3.0

The Requires

 

24/10 2016

0.1.1

0.1.1.0

Magento module wrapper for LightGallery

  Sources   Download

OSL 3.0

The Requires

 

21/10 2016

0.1.0

0.1.0.0

Magento module wrapper for LightGallery

  Sources   Download

OSL 3.0

The Requires