// JavaScript Document $(function() { /* Using custom settings */ $(".inline").fancybox({ 'hideOnContentClick': true, 'autoSize' : false, 'fitToView' : false, onStart : function () { }, onClosed : function () { $('#fancybox-banner').hide(); }, onComplete : function () { if(!! $('#fancybox-banner').length>0){ $('#fancybox-banner').show(); $('#fancybox-banner').html("
"); // $('#fancybox-banner').html(""); // $('#fancybox-banner').html(""); }else{ $('#fancybox-outer').after(""); // $('#fancybox-banner').html(""); // $('#fancybox-banner').html(""); } // $('#fancybox-outer').css('top',"85px") $.fancybox.resize(); } }); $("a#inline").fancybox({ 'hideOnContentClick': true, 'autoSize' : false, 'fitToView' : false, onStart : function () { }, onClosed : function () { $('#fancybox-banner').hide(); }, onComplete : function () { if(!! $('#fancybox-banner').length>0){ $('#fancybox-banner').show(); // $('#fancybox-banner').html(""); $('#fancybox-banner').html(""); // $('#fancybox-banner').html(""); }else{ $('#fancybox-outer').after(""); // $('#fancybox-banner').html(""); $('#fancybox-banner').html(""); // $('#fancybox-banner').html(""); } $('#fancybox-outer').css('top',"85px") $.fancybox.resize(); } }); /* Apply fancybox to multiple items */ $(".OldDlhNet a img").parent().fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'speedIn' : 200, 'speedOut' : 100, 'overlayShow' : '#000000' }); /* $(".Content a img").parent().fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'speedIn' : 200, 'speedOut' : 100, 'overlayShow' : '#000000' }); */ $(".FBiframe").fancybox({ 'width' : 450, 'height' : 330, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe' }); $(".iframeReadme").fancybox({ 'width' : 750, 'height' : 330, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe' }); $(".helpwantedurl").fancybox({ 'width' : 960, 'height' : 600, 'autoScale' : false, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'type' : 'iframe' }); $(".newsletterShow").fancybox({ 'width' : 680, 'height' : 600, 'autoScale' : false, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'type' : 'iframe' }); $(".keyUnlock").fancybox({ 'width' : 750, 'height' : 450, 'autoScale' : false, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'type' : 'iframe' }); $(".keyUnlock2").each(function(){ $(this).fancybox({ 'width' : 750, 'height' : 450, 'autoScale' : false, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'type' : 'iframe', 'hideOnOverlayClick': false, 'hideOnContentClick': false, 'enableEscapeButton': false, 'helpers' : { 'overlay' : {'closeClick': false} }, 'href' : $(this).attr('data-href') , 'onComplete' : function () { $("#fancybox-frame").attr("allowfullscreen", "allowfullscreen") } }); }); });