front.js
66 lines
| 1 | jQuery(document).ready(function($) { |
| 2 | |
| 3 | if(rlArgs.script === 'swipebox') { |
| 4 | $('a[rel*="'+rlArgs.selector+'"]').swipebox({ |
| 5 | useCSS: rlArgs.animation, |
| 6 | hideBarsDelay: (rlArgs.hideBars === '1' ? parseInt(rlArgs.hideBarsDelay) : 0), |
| 7 | videoMaxWidth: parseInt(rlArgs.videoMaxWidth) |
| 8 | }); |
| 9 | } else if(rlArgs.script === 'prettyphoto') { |
| 10 | $('a[rel*="'+rlArgs.selector+'"]').prettyPhoto({ |
| 11 | animation_speed: rlArgs.animationSpeed, |
| 12 | slideshow: (rlArgs.slideshow === '1' ? parseInt(rlArgs.slideshowDelay) : false), |
| 13 | autoplay_slideshow: (rlArgs.slideshowAutoplay === '1' ? true : false), |
| 14 | opacity: rlArgs.opacity, |
| 15 | show_title: (rlArgs.showTitle === '1' ? true : false), |
| 16 | allow_resize: (rlArgs.allowResize === '1' ? true : false), |
| 17 | default_width: parseInt(rlArgs.width), |
| 18 | default_height: parseInt(rlArgs.height), |
| 19 | counter_separator_label: rlArgs.separator, |
| 20 | theme: rlArgs.theme, |
| 21 | horizontal_padding: parseInt(rlArgs.horizontalPadding), |
| 22 | hideflash: (rlArgs.hideFlash === '1' ? true : false), |
| 23 | wmode: rlArgs.wmode, |
| 24 | autoplay: (rlArgs.videoAutoplay === '1' ? true : false), |
| 25 | modal: (rlArgs.modal === '1' ? true : false), |
| 26 | deeplinking: (rlArgs.deeplinking === '1' ? true : false), |
| 27 | overlay_gallery: (rlArgs.overlayGallery === '1' ? true : false), |
| 28 | keyboard_shortcuts: (rlArgs.keyboardShortcuts === '1' ? true : false), |
| 29 | 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>' : ''), |
| 30 | changepicturecallback: function(){}, |
| 31 | callback: function(){}, |
| 32 | ie6_fallback: true |
| 33 | }); |
| 34 | } else if(rlArgs.script === 'fancybox') { |
| 35 | $('a[rel*="'+rlArgs.selector+'"]').fancybox({ |
| 36 | modal: (rlArgs.modal === '1' ? true : false), |
| 37 | overlayShow: (rlArgs.showOverlay === '1' ? true : false), |
| 38 | showCloseButton: (rlArgs.showCloseButton === '1' ? true : false), |
| 39 | enableEscapeButton: (rlArgs.enableEscapeButton === '1' ? true : false), |
| 40 | hideOnOverlayClick: (rlArgs.hideOnOverlayClick === '1' ? true : false), |
| 41 | hideOnContentClick: (rlArgs.hideOnContentClick === '1' ? true : false), |
| 42 | cyclic: (rlArgs.cyclic === '1' ? true : false), |
| 43 | showNavArrows: (rlArgs.showNavArrows === '1' ? true : false), |
| 44 | autoScale: (rlArgs.autoScale === '1' ? true : false), |
| 45 | scrolling: rlArgs.scrolling, |
| 46 | centerOnScroll: (rlArgs.centerOnScroll === '1' ? true : false), |
| 47 | opacity: (rlArgs.opacity === '1' ? true : false), |
| 48 | overlayOpacity: parseFloat(rlArgs.overlayOpacity / 100), |
| 49 | overlayColor: rlArgs.overlayColor, |
| 50 | titleShow: (rlArgs.titleShow === '1' ? true : false), |
| 51 | titlePosition: rlArgs.titlePosition, |
| 52 | transitionIn: rlArgs.transitions, |
| 53 | transitionOut: rlArgs.transitions, |
| 54 | easingIn: rlArgs.easings, |
| 55 | easingOut: rlArgs.easings, |
| 56 | speedIn: parseInt(rlArgs.speeds), |
| 57 | speedOut: parseInt(rlArgs.speeds), |
| 58 | changeSpeed: parseInt(rlArgs.changeSpeed), |
| 59 | changeFade: parseInt(rlArgs.changeFade), |
| 60 | padding: parseInt(rlArgs.padding), |
| 61 | margin: parseInt(rlArgs.margin), |
| 62 | width: parseInt(rlArgs.videoWidth), |
| 63 | height: parseInt(rlArgs.videoHeight) |
| 64 | }); |
| 65 | } |
| 66 | }); |