Product Gallery Widget Example

An example of images and video

by sambrace

HTML

<script type="text/javascript" src="https://product-gallery.cloudinary.com/all.js"></script>

<div class="wrap" id="wrap"></div>

<script>
  cloudinary.galleryWidget({
    container: '#wrap',
    cloudName: 'sambrace',
    mediaAssets: [{
      tag: "dress",
      transformation: {
        crop: "fill"
      }
    }, {
      tag: "dress",
      mediaType: "video",
    }],
    carouselStyle: 'none',
  }).render();

</script>