This Juicebox module provides an integration between the Juicebox HTML5 responsive gallery library (http://juicebox.net/) and Drupal. Juicebox is in many ways the successor of Simpleviewer and offers a powerful and flexible image gallery front-end. See the project page for a detailed feature overview.
Installation
- Install and enable the required Libraries API module (version 2.0 or above) from http://drupal.org/project/libraries.
- Download the 3rd party Juicebox library from http://www.juicebox.net/download/ and extract it to a temporary location. Both the Lite (free) and Pro versions should work fine with this module, and the one you choose will depend largely on how much formatting flexibly you require.
- Copy the core Juicebox library files to your site's library directory. Typically this means you will create a new directory called /sites/all/libraries/juicebox and then copy the contents of the "jbcore" directory (that you extracted in the previous step) to this directory. You will end up with /sites/all/libraries/juicebox/juicebox.js ... etc.
- Install and enable this Juicebox module.
If for any reason you enable the Juicebox module (step 4) before installing the Juicebox library (step 3), or if you make changes to the Juicebox library itself, please be sure to clear your Drupal cache at /admin/config/development/performance. This will ensure that the correct Juicebox library information is detected by the Libraries API.
Usage and Configuration
This module does not introduce any new structural or storage concepts to Drupal, it simply offers new ways to display groups of images that you already maintain via standard Drupal techniques. If you want to setup individual nodes/entities as full galleries, you can use the Juicebox field formatter (this is perhaps the easiest option to setup and manage). Or, if you prefer to setup nodes/entities as individual images, and then leverage the flexibility of views to organize your galleries, you can use the Juicebox views style plugin (this is certainly the most flexible option).
Using the Juicebox field formatter (nodes/entities are galleries)
- Create a content type to represent a full gallery/album object. Within the "manage fields" tab add any fields that you would like but you must include one "image" field to hold you main gallery images (one image field can hold multiple images). In the image field options be sure to:
- Check the box to "enable alt field" (this can be used later to hold caption or title information).
- Check the box to "enable title field" (this can be used later to hold caption or title information).
- For "number of values" be sure you select a value greater than one, such as "unlimited". This will allow you to add multiple images to a single node/entity (thus making a gallery).
- Within the "manage display" tab, find the entry for your image field and under the "format" options choose "Juicebox Gallery". Then click on the gear button to the right to open the Juicebox-specific display options. Here you can:
- Specify which image styles to use when displaying images and thumbnails. Note that you first may need to create a new style at /admin/config/media/image-styles if none of the available options are suitable.
- Specify which parts of the image field data to use as caption and title sources (if any).
- Customize a variety of Juicebox configuration options for this gallery.
- For each gallery that you would like to create, add a new node of the type you just created. Upload the various images that you want for each gallery into the image field that you setup above.
Using the Juicebox views style plugin (nodes/entities are images)
- Install the views module from: http://drupal.org/project/views
- Create a single content type to hole the images that will be part of a gallery. Add fields for the image itself (each node will only hold one image), a text/html caption, a title, etc. You may also want to add a field that can be used as a sorting parameter (such as a simple integer field), add taxonomy reference field to "group" your images in albums/galleries, etc.
- Add your images to your site using the content type you just created.
- Create a new view that displays the content type that you created. Add a standard page display to this view that uses the display format of "Juicebox Gallery".
- Be sure that you add a separate field to your view (from the content type fields that you created earlier) for the image that you will display, the title text that will accompany each image and the caption text that will accompany each image.
- Setup whatever content filters, sorting options, etc. that you like (e.g. perhaps you want to use a taxonomy-based contextual filter to setup distinct albums within this single view definition, etc.).
- Under "format" click "settings" to access the Juicebox-specific display options. Here you can:
- Specify which of your view fields should be used for each of the Juicebox gallery image elements (image, thumbnail, title, caption). You should have already added a field for each to your view and will simply need to map each of these options to the appropriate view field.
- Specify which image styles to use when displaying images and thumbnails. Note that you first may need to create a new style at /admin/config/media/image-styles if none of the available options are suitable.
- Customize a variety of Juicebox configuration options for this gallery.
- Save your view. Note that the preview function in the view admin may not display anything, you will need to navigate to the actual view path to see/test the results.
Additional Notes
- There is a known incompatibility between this module and the Theme Developer module. Nothing serious will happen if the two are enabled side-by-side, but your galleries may not display correctly until Theme Developer is disabled. More details are available here.
- If you are comfortable with custom Drupal theming techniques you can setup your galleries to launch directly into a "full screen" (full window) mode. See these notes for details.
- If your gallery pages receive very high levels of traffic that cannot be serviced by standard Drupal caching, you may be interested in these performance notes.