Skip to content

Instantly share code, notes, and snippets.

@abteilung
Created January 25, 2013 08:49
Show Gist options
  • Select an option

  • Save abteilung/4632902 to your computer and use it in GitHub Desktop.

Select an option

Save abteilung/4632902 to your computer and use it in GitHub Desktop.
JS: fancyBox Grundeinstellungen
//Link http://fancyapps.com/fancybox/
jQuery(document).ready(function(){
jQuery("a.fancybox").fancybox({
'zoomSpeedIn': 100,
'zoomSpeedOut': 100,
'overlayShow': true,
'nextEffect' : 'fade',
'prevEffect' : 'none',
'width': 750,
'height': 380,
'loop': false,
'showNavArrows': true
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment