0

I try to display a list of images through Drupal Views Slideshow, using Galleria plugin, all works well,

how to set specific start image from my list?

I found this option

Galleria.configure({
    show: 4  //This option accept only integer as value,
});

I want pass image url to display it first Any suggestion for api function to use?

1 Answers1

0

You can try the history plugin: http://galleria.io/docs/plugins/history/

It allows hashed URLs such as http://example.com/#4

David Hellsing
  • 106,495
  • 44
  • 176
  • 212
  • tnx David, I solve my problem by extending Drupal Views functional, so I get a number of image to display, and send it to the Galleria, – Alexandr Sopkov Apr 03 '13 at 21:21