// JavaScript Document jQuery(document).ready(function(jQuery) { /** * Fancybox (Lightbox; Im Content) */ jQuery('a.lightbox').fancybox({ 'transitionIn' : 'none', 'transitionOut' : 'none', 'overlayOpacity' : 0.5, 'overlayColor' : '#000000' }); /** * Fancybox (Lightbox; Support Tabellen) */ jQuery('a.support-table').fancybox({ 'transitionIn' : 'none', 'transitionOut' : 'none', 'overlayOpacity' : 0.85, 'overlayColor' : '#000000' }); jQuery('a.support-table').click(function(){ jQuery('#fancybox-outer').css('background', 'none'); jQuery('#fancybox-content').css('border', 'none'); jQuery('#fancybox-close').css('right', '5px'); }); /** * Fancybox (iFrame) */ jQuery(".lightbox.iframe a").fancybox({ 'width' : '75%', 'height' : '75%', 'autoScale' : false, 'titleShow' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe', 'overlayOpacity' : 0.5, 'overlayColor' : '#000000' }); /** * Produkteinzelansicht (iFrame) */ jQuery(".short-description a.read-more").fancybox({ /*'width' : 360, 'height' : '75%',*/ 'autoScale' : false, 'titleShow' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'overlayOpacity' : 0.5, 'overlayColor' : '#000000' }); jQuery('.short-description a.read-more').click(function(){ jQuery('#fancybox-outer').css('background', 'none'); jQuery('#fancybox-content').css({ 'background' : '#FFFFFF', 'border' : '#58585a solid 1px', 'padding' : '20px 0', }); }); });