responsive-lightbox-front.js
39 lines
| 1 | jQuery(document).ready(function($) { |
| 2 | |
| 3 | function rlUniqueArr(v, i, s) { |
| 4 | return s.indexOf(v) === i; |
| 5 | } |
| 6 | |
| 7 | if(rlArgs.script === 'swipebox') { |
| 8 | $('a[rel*="'+rlArgs.selector+'"]').swipebox({ |
| 9 | useCSS: rlArgs.animation, |
| 10 | hideBarsDelay: (rlArgs.hideBars === '1' ? parseInt(rlArgs.hideBarsDelay) : 0), |
| 11 | videoMaxWidth: parseInt(rlArgs.videoMaxWidth) |
| 12 | }); |
| 13 | } else { |
| 14 | $('a[rel*="'+rlArgs.selector+'"]').prettyPhoto({ |
| 15 | animation_speed: rlArgs.animationSpeed, |
| 16 | slideshow: (rlArgs.slideshow === '1' ? parseInt(rlArgs.slideshowDelay) : false), |
| 17 | autoplay_slideshow: (rlArgs.slideshowAutoplay === '1' ? true : false), |
| 18 | opacity: rlArgs.opacity, |
| 19 | show_title: (rlArgs.showTitle === '1' ? true : false), |
| 20 | allow_resize: (rlArgs.allowResize === '1' ? true : false), |
| 21 | default_width: parseInt(rlArgs.width), |
| 22 | default_height: parseInt(rlArgs.height), |
| 23 | counter_separator_label: rlArgs.separator, |
| 24 | theme: rlArgs.theme, |
| 25 | horizontal_padding: parseInt(rlArgs.horizontalPadding), |
| 26 | hideflash: (rlArgs.hideFlash === '1' ? true : false), |
| 27 | wmode: rlArgs.wmode, |
| 28 | autoplay: (rlArgs.videoAutoplay === '1' ? true : false), |
| 29 | modal: (rlArgs.modal === '1' ? true : false), |
| 30 | deeplinking: (rlArgs.deeplinking === '1' ? true : false), |
| 31 | overlay_gallery: (rlArgs.overlayGallery === '1' ? true : false), |
| 32 | keyboard_shortcuts: (rlArgs.keyboardShortcuts === '1' ? true : false), |
| 33 | social_tools: (rlArgs.social === '1' ? '<div class="pp_social"><div class="twitter"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div class="facebook"><iframe src="http://www.facebook.com/plugins/like.php?locale=en_US&href='+location.href+'&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:23px;" allowTransparency="true"></iframe></div></div>' : ''), |
| 34 | changepicturecallback: function(){}, |
| 35 | callback: function(){}, |
| 36 | ie6_fallback: true |
| 37 | }); |
| 38 | } |
| 39 | }); |