On a per content type level, it would be nice to have the option of a slide show, ie after X seconds of the page load, Galleria will start stepping thought each image, holding on each for X seconds till the user clicks on one (stopping the slide show), mouses over the main image (pausing it), or hits a "stop" button. Playing can then be re-started with a "play" button.

Comments

Mark Theunissen’s picture

Status: Active » Postponed

Sounds great, I won't be doing this however. If someone wants to implement, feel free to update issue with a patch! ;)

josephcheek’s picture

I found a way to hack galleria to get all lightboxes to become lightshows. Add an argument of true to Lightbox.start() in inc/galleria.js:

--- /www/sites/all/modules/galleria/inc/galleria.js    2010-02-01 15:47:27.000000000 -0500
+++ ./galleria.js       2010-07-28 09:37:41.000000000 -0400
@@ -15,7 +15,7 @@
     // Lightbox support
     if (Drupal.settings.galleria_lightbox != 'none') {
       // surround the displayed image with a Lightbox link
-      image.wrap('<a href="#" onclick="Lightbox.start(document.getElementById(\'' + thumb.next('a').attr('id') + '\')); return false;"></a>');
+      image.wrap('<a href="#" onclick="Lightbox.start(document.getElementById(\'' + thumb.next('a').attr('id') + '\'), true); return false;"></a>');
       // keep Galleria from adding a click event to the image
       $.galleria.clickNext = false;
       image.attr('title','View full-size');
hexblot’s picture

There is a patch for the slideshow component, but it's on a module level, not per content type. Please check out #632650: Auto Change Images in Galleria

Peter Bex’s picture

Check out the jcarousel module. It claims to include support for Galleria.