You are here

README.txt in Lightbox2 8

Same filename and directory in other branches
  1. 5.2 README.txt
  2. 5 README.txt
  3. 6 README.txt
  4. 7.2 README.txt
  5. 7 README.txt
CONTENTS OF THIS FILE
----------------------

  * Introduction
  * Installation
  * Adding Lightbox Functionality to your Images
    - No Grouping
    - With Grouping
    - Slideshow
    - Video
    - HTML Content Support
    - Inline Content Support
    - Turning the Image Caption into a Link
  * Keyboard Shortcuts
  * Translation of Configured Strings
  * Known Issues
    - Keyboard Shortcuts in Opera


INTRODUCTION
------------
Maintainers:
  Stella Power (http://drupal.org/user/66894)
  Daniel F. Kudwien (http://drupal.org/user/54136)
  Mark Ashmead (http://drupal.org/user/52392)
  Fernando Correa da Conceição (http://drupal.org/user/889254)

Documentation: http://drupal.org/node/144469

Licensed under the GNU/GPL License
Based on Lightbox v2.03.3 by Lokesh Dhakar
<http://www.huddletogether.com/projects/lightbox2/>

Originally written to make use of the Prototype framework, and Script.acalo.us,
now altered to use jQuery.

Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
maintainers to distribute the original lightbox.js via Drupal.org under this
license scheme.  This file has been subsequently modified to make use of jQuery
instead of prototype / script.acalo.us.

This module enables the use of lightbox2 which places images above your
current page, not within. This frees you from the constraints of the layout,
particularly column widths.

This module will include the lightbox CSS and JS files in your Drupal
Installation without the need to edit the theme. The module comes with a
Lightbox2 Lite option which does not use the jQuery libraries; it is therefore
less likely to conflict with anything else.


INSTALLATION
------------
1. Copy lightbox2 folder to modules directory.
2. At admin/modules enable the lightbox2 module.
3. Enable permissions at admin/people/permissions.
4. Configure the module at admin/config/user-interface/lightbox2.
5. Modify your image links to open in a lightbox where necessary, see "Adding
   Lightbox Functionality to your Images' section below.
6. If you need to play flv files, then you may need to install a FLV player.
   There are a number of freely available ones on the Internet, including
   http://www.jeroenwijering.com/


ADDING LIGHTBOX FUNCTIONALITY TO YOUR IMAGES
--------------------------------------------
No Grouping
===========
Add rel="lightbox" attribute to any link tag to activate the lightbox.
For example:
<a href="images/image-1.jpg" rel="lightbox">image #1</a>
<a href="images/image-1.jpg" rel="lightbox[][my caption]">image #1</a>

Optional: To show a caption either use the title attribute or put in the second
set of [] of the rel attribute.

With Grouping
==============
If you have a set of related images that you would like to group, follow step
one but additionally include a group name between square brackets in the rel
attribute. For example:

<a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
<a href="images/image-2.jpg" rel="lightbox[roadtrip][caption 2]">image #2</a>
<a href="images/image-3.jpg" rel="lightbox[roadtrip][caption 3]">image #3</a>

No limits to the number of image sets per page or how many images are allowed
in each set. Go nuts!

If you have a set of images that you would like to group together in a
lightbox, but only wish for one of these images to be visible on your page, you
can assign the "lightbox_hide_image" class to hide the additional images.  For
example:

<a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
<a href="images/image-2.jpg" rel="lightbox[roadtrip]" class="lightbox_hide_image">image #2</a>
<a href="images/image-3.jpg" rel="lightbox[roadtrip]" class="lightbox_hide_image">image #3</a>

Slideshow
=========
This is very similar to the grouping functionality described above.  The only
difference is that "rel" attribute should be set to "lightshow" instead of
"lightbox".  Using the same example as above, we could launch the images in a
slideshow by doing:

<a href="images/image-1.jpg" rel="lightshow[roadtrip]">image #1</a>
<a href="images/image-2.jpg" rel="lightshow[roadtrip][caption 2]">image #2</a>
<a href="images/image-3.jpg" rel="lightshow[roadtrip][caption 3]">image #3</a>

Video
=====
It's possible to show video content in the lightbox.  In this case the "rel"
attribute should be set to "lightvideo".  It's possible to group videos and 
to control the size of the lightbox by setting the 'width' and 'height
properties.  The properties can be configured like
"lightvideo[group|width:300px; height: 200px;]" and
"lightvideo[|width:300px; height: 200px;][my caption]".  The properties should
all be of the format "property: value;" - note the closing semi-colon.  If no
properties are set, then the default width and height of 400px will be used.
See below for more detailed examples.

Basic example:
<a href="http://video.google.com/videoplay?docid=1811233136844420765"
rel="lightvideo">Google video example - default size</a>

Basic example with caption:
<a href="http://video.google.com/videoplay?docid=1811233136844420765"
rel="lightvideo[][my caption]">Google video example - default size</a>

Grouped example:
<a href="http://video.google.com/videoplay?docid=29023498723974239479"
rel="lightvideo[group][caption 1]">Grouped example 1</a>
<a href="http://video.google.com/videoplay?docid=1811233136844420765"
rel="lightvideo[group][caption 2]">Grouped example 2</a>

Controlling lightbox size example:
<a href="http://video.google.com/videoplay?docid=1811233136844420765"
rel="lightvideo[|width:400px; height:300px;][my caption]">Google video example -
custom size</a>

Supported Video Formats
asx, wmv, mov and swf videos should all be supported.  A number of video
providers are also supported, for example YouTube and Google Video. For full
details on how to integrate these with lightbox, please see the online
documentation.

HTML Content Support
====================
It's possible to show webpage content in the lightbox, using iframes.  In this
case the "rel" attribute should be set to "lightframe".  Again it's possible to
group the content, (e.g. "lightframe[search]") but in addition to that, it's
possible to control some of the iframe properties.  It's possible to set the
'width', 'height' and 'scrolling' properties of the iframe.  The properties are
separated from the group name by a '|', for example
"lightframe[search|width:100px;]" and
"lightframe[search|width:100px;][my caption]".  If no grouping is being used,
then the '|' is still used and the format would be "lightframe[|width:100px;]".
The properties should all be of the format "property: value;" - note the closing
semi-colon.  If no iframe properties are set, then the default width and height
of 400px will be used. See below for more detailed examples.

Basic example:
<a href="http://www.google.com" rel="lightframe">Search google</a>

Basic example with caption:
<a href="http://www.google.com" rel="lightframe[][my caption]">Search google</a>

Grouped example:
<a href="http://www.google.com" rel="lightframe[search]">Search google</a>
<a href="http://www.yahoo.com" rel="lightframe[search][Search Yahoo]">Search yahoo</a>

Controlling iframe property example:
<a href="http://www.google.com" rel="lightframe[|width:400px; height:300px; scrolling: auto;]">Search google</a>

Controlling iframe property when grouped example:
<a href="http://www.google.com" rel="lightframe[search|width:400px; height:300px; scrolling: auto;][Search Google]">Search google</a>
<a href="http://www.yahoo.com" rel="lightframe[search|width:400px; height:300px;]">Search yahoo</a>
<a href="http://www.yahoo.com" rel="lightframe[search|width:400px; height:300px;][Search Yahoo]">Search yahoo</a>

Inline Content Support
=======================
It's possible to show HTML snippets in the lightbox, that is on the same domain.
In this case the "rel" attribute should be set to "lightmodal".  Again it's
possible to group the content, (e.g. "lightmodal[search]") but in addition to
that, it's possible to control some of the inline / modal properties.  It's
possible to set the 'width', 'height' and 'scrolling' properties of the inline
content.  The properties are separated from the group name by a '|', for example
"lightmodal[search|width:100px;]" and
"lightmodal[search|width:100px;][my caption]".  If no grouping is being used,
then the '|' is still used and the format would be "lightmodal[|width:100px;]".
The properties should all be of the format "property: value;" - note the closing
semi-colon.  If no properties are set, then the default width and height of
400px will be used. See below for more detailed examples.

Basic example:
<a href="search.php" rel="lightmodal">Search</a>

Basic example with caption:
<a href="search.php" rel="lightmodal[][my caption]">Search</a>

Grouped example:
<a href="search.php" rel="lightmodal[search]">Search</a>
<a href="search.php?status=1" rel="lightmodal[search][published]">Search published content</a>

Controlling modal property example:
<a href="search.php" rel="lightmodal[|width:400px; height:300px; scrolling: auto;]">Search</a>

Controlling modal property when grouped example:
<a href="search.php" rel="lightmodal[search|width:400px; height:300px; scrolling: auto;]">Search</a>
<a href="search.php?status=1" rel="lightmodal[search|width:400px; height:300px;][Search published]">Search published content</a>
<a href="search.php?status=0" rel="lightmodal[search|width:400px; height:300px;][Search Unpublished]">Search unpublished content</a>



Turning the Image Caption into a Link
=====================================
If you wish to turn the caption into a link, format your caption in the
following way:

<a href="images/image-1.jpg" rel="lightbox[][&lt;a href=\"http://www.yourlink.com\"&gt;Clicky Visit Link&lt;/a&gt;'>image #1</a>

Note, the < and > characters have been changed to their HTML entities, and the "
have been escaped.


KEYBOARD SHORTCUTS
------------------
Not all of the default keyboard shortcuts work in the Opera browser, for example
'z' for toggling the zoom and 'spacebar' for toggling play / pause in
slideshows.  This can be overcome by updating your shortcut settings in the
Opera preferences editor.

The default keyboard shortcuts are listed below.  You can override these on
admin/settings/lightbox2.

Close : x, o, c, ESC
Previous Image : p, Left Arrow
Next Image : n, Right Arrow
Toggle Zoom : z (not available in slideshow)
Toggle Play / Pause : Spacebar (slideshow only)


TRANSLATION OF CONFIGURED STRINGS
----------------------------------
In order to translate the lightbox2 configuration strings, such as the text for
the "View Image Details" link and the image count, please install the i18n:
internationalization module and follow the instructions at 
http://drupal.org/node/134002.


KNOWN ISSUES
------------

Keyboard Shortcuts in Opera
---------------------------
Not all of the default keyboard shortcuts work in the Opera browser, for example
'z' for toggling the zoom and 'spacebar' for toggling play / pause in
slideshows.  This can be overcome by updating your shortcut settings in the
Opera preferences editor.

File

README.txt
View source
  1. CONTENTS OF THIS FILE
  2. ----------------------
  3. * Introduction
  4. * Installation
  5. * Adding Lightbox Functionality to your Images
  6. - No Grouping
  7. - With Grouping
  8. - Slideshow
  9. - Video
  10. - HTML Content Support
  11. - Inline Content Support
  12. - Turning the Image Caption into a Link
  13. * Keyboard Shortcuts
  14. * Translation of Configured Strings
  15. * Known Issues
  16. - Keyboard Shortcuts in Opera
  17. INTRODUCTION
  18. ------------
  19. Maintainers:
  20. Stella Power (http://drupal.org/user/66894)
  21. Daniel F. Kudwien (http://drupal.org/user/54136)
  22. Mark Ashmead (http://drupal.org/user/52392)
  23. Fernando Correa da Conceição (http://drupal.org/user/889254)
  24. Documentation: http://drupal.org/node/144469
  25. Licensed under the GNU/GPL License
  26. Based on Lightbox v2.03.3 by Lokesh Dhakar
  27. Originally written to make use of the Prototype framework, and Script.acalo.us,
  28. now altered to use jQuery.
  29. Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
  30. maintainers to distribute the original lightbox.js via Drupal.org under this
  31. license scheme. This file has been subsequently modified to make use of jQuery
  32. instead of prototype / script.acalo.us.
  33. This module enables the use of lightbox2 which places images above your
  34. current page, not within. This frees you from the constraints of the layout,
  35. particularly column widths.
  36. This module will include the lightbox CSS and JS files in your Drupal
  37. Installation without the need to edit the theme. The module comes with a
  38. Lightbox2 Lite option which does not use the jQuery libraries; it is therefore
  39. less likely to conflict with anything else.
  40. INSTALLATION
  41. ------------
  42. 1. Copy lightbox2 folder to modules directory.
  43. 2. At admin/modules enable the lightbox2 module.
  44. 3. Enable permissions at admin/people/permissions.
  45. 4. Configure the module at admin/config/user-interface/lightbox2.
  46. 5. Modify your image links to open in a lightbox where necessary, see "Adding
  47. Lightbox Functionality to your Images' section below.
  48. 6. If you need to play flv files, then you may need to install a FLV player.
  49. There are a number of freely available ones on the Internet, including
  50. http://www.jeroenwijering.com/
  51. ADDING LIGHTBOX FUNCTIONALITY TO YOUR IMAGES
  52. --------------------------------------------
  53. No Grouping
  54. ===========
  55. Add rel="lightbox" attribute to any link tag to activate the lightbox.
  56. For example:
  57. image #1
  58. image #1
  59. Optional: To show a caption either use the title attribute or put in the second
  60. set of [] of the rel attribute.
  61. With Grouping
  62. ==============
  63. If you have a set of related images that you would like to group, follow step
  64. one but additionally include a group name between square brackets in the rel
  65. attribute. For example:
  66. image #1
  67. image #2
  68. image #3
  69. No limits to the number of image sets per page or how many images are allowed
  70. in each set. Go nuts!
  71. If you have a set of images that you would like to group together in a
  72. lightbox, but only wish for one of these images to be visible on your page, you
  73. can assign the "lightbox_hide_image" class to hide the additional images. For
  74. example:
  75. image #1
  76. image #2
  77. image #3
  78. Slideshow
  79. =========
  80. This is very similar to the grouping functionality described above. The only
  81. difference is that "rel" attribute should be set to "lightshow" instead of
  82. "lightbox". Using the same example as above, we could launch the images in a
  83. slideshow by doing:
  84. image #1
  85. image #2
  86. image #3
  87. Video
  88. =====
  89. It's possible to show video content in the lightbox. In this case the "rel"
  90. attribute should be set to "lightvideo". It's possible to group videos and
  91. to control the size of the lightbox by setting the 'width' and 'height
  92. properties. The properties can be configured like
  93. "lightvideo[group|width:300px; height: 200px;]" and
  94. "lightvideo[|width:300px; height: 200px;][my caption]". The properties should
  95. all be of the format "property: value;" - note the closing semi-colon. If no
  96. properties are set, then the default width and height of 400px will be used.
  97. See below for more detailed examples.
  98. Basic example:
  99. rel="lightvideo">Google video example - default size
  100. Basic example with caption:
  101. rel="lightvideo[][my caption]">Google video example - default size
  102. Grouped example:
  103. rel="lightvideo[group][caption 1]">Grouped example 1
  104. rel="lightvideo[group][caption 2]">Grouped example 2
  105. Controlling lightbox size example:
  106. rel="lightvideo[|width:400px; height:300px;][my caption]">Google video example -
  107. custom size
  108. Supported Video Formats
  109. asx, wmv, mov and swf videos should all be supported. A number of video
  110. providers are also supported, for example YouTube and Google Video. For full
  111. details on how to integrate these with lightbox, please see the online
  112. documentation.
  113. HTML Content Support
  114. ====================
  115. It's possible to show webpage content in the lightbox, using iframes. In this
  116. case the "rel" attribute should be set to "lightframe". Again it's possible to
  117. group the content, (e.g. "lightframe[search]") but in addition to that, it's
  118. possible to control some of the iframe properties. It's possible to set the
  119. 'width', 'height' and 'scrolling' properties of the iframe. The properties are
  120. separated from the group name by a '|', for example
  121. "lightframe[search|width:100px;]" and
  122. "lightframe[search|width:100px;][my caption]". If no grouping is being used,
  123. then the '|' is still used and the format would be "lightframe[|width:100px;]".
  124. The properties should all be of the format "property: value;" - note the closing
  125. semi-colon. If no iframe properties are set, then the default width and height
  126. of 400px will be used. See below for more detailed examples.
  127. Basic example:
  128. Search google
  129. Basic example with caption:
  130. Search google
  131. Grouped example:
  132. Search google
  133. Search yahoo
  134. Controlling iframe property example:
  135. Search google
  136. Controlling iframe property when grouped example:
  137. Search google
  138. Search yahoo
  139. Search yahoo
  140. Inline Content Support
  141. =======================
  142. It's possible to show HTML snippets in the lightbox, that is on the same domain.
  143. In this case the "rel" attribute should be set to "lightmodal". Again it's
  144. possible to group the content, (e.g. "lightmodal[search]") but in addition to
  145. that, it's possible to control some of the inline / modal properties. It's
  146. possible to set the 'width', 'height' and 'scrolling' properties of the inline
  147. content. The properties are separated from the group name by a '|', for example
  148. "lightmodal[search|width:100px;]" and
  149. "lightmodal[search|width:100px;][my caption]". If no grouping is being used,
  150. then the '|' is still used and the format would be "lightmodal[|width:100px;]".
  151. The properties should all be of the format "property: value;" - note the closing
  152. semi-colon. If no properties are set, then the default width and height of
  153. 400px will be used. See below for more detailed examples.
  154. Basic example:
  155. Search
  156. Basic example with caption:
  157. Search
  158. Grouped example:
  159. Search
  160. Search published content
  161. Controlling modal property example:
  162. Search
  163. Controlling modal property when grouped example:
  164. Search
  165. Search published content
  166. Search unpublished content
  167. Turning the Image Caption into a Link
  168. =====================================
  169. If you wish to turn the caption into a link, format your caption in the
  170. following way:
  171. image #1
  172. Note, the < and > characters have been changed to their HTML entities, and the "
  173. have been escaped.
  174. KEYBOARD SHORTCUTS
  175. ------------------
  176. Not all of the default keyboard shortcuts work in the Opera browser, for example
  177. 'z' for toggling the zoom and 'spacebar' for toggling play / pause in
  178. slideshows. This can be overcome by updating your shortcut settings in the
  179. Opera preferences editor.
  180. The default keyboard shortcuts are listed below. You can override these on
  181. admin/settings/lightbox2.
  182. Close : x, o, c, ESC
  183. Previous Image : p, Left Arrow
  184. Next Image : n, Right Arrow
  185. Toggle Zoom : z (not available in slideshow)
  186. Toggle Play / Pause : Spacebar (slideshow only)
  187. TRANSLATION OF CONFIGURED STRINGS
  188. ----------------------------------
  189. In order to translate the lightbox2 configuration strings, such as the text for
  190. the "View Image Details" link and the image count, please install the i18n:
  191. internationalization module and follow the instructions at
  192. http://drupal.org/node/134002.
  193. KNOWN ISSUES
  194. ------------
  195. Keyboard Shortcuts in Opera
  196. ---------------------------
  197. Not all of the default keyboard shortcuts work in the Opera browser, for example
  198. 'z' for toggling the zoom and 'spacebar' for toggling play / pause in
  199. slideshows. This can be overcome by updating your shortcut settings in the
  200. Opera preferences editor.