Share Pastebin
Guest
Public paste!

impi_

By: a guest | Mar 19th, 2010 | Syntax: None | Size: 0.45 KB | Hits: 47 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3.  
  4.         /* This is basic - uses default settings */
  5.        
  6.         $("a[rel=example_group]").fancybox({
  7.                 transitionIn : 'none',
  8.                 titlePosition : 'outside',
  9.                 transitionOut : 'none',
  10.                 titleFormat : function(title, currentArray, currentIndex, currentOpts) {
  11.                     return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
  12.                 }
  13.         });
  14.  
  15. });
  16.  
  17. </script>