Created
January 25, 2013 08:49
-
-
Save abteilung/4632902 to your computer and use it in GitHub Desktop.
JS: fancyBox Grundeinstellungen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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