Skip to content

Instantly share code, notes, and snippets.

@armitage
Created July 13, 2010 13:50
Show Gist options
  • Save armitage/473894 to your computer and use it in GitHub Desktop.
Save armitage/473894 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$("a[class*='zoom']").fancybox({
imageScale: true,
zoomOpacity: true,
overlayShow: true,
overlayOpacity: 1,
zoomSpeedIn: 250,
padding: 0,
centerOnScroll: false,
callbackOnStart: function(){
$('#container').hide();
},
callbackOnClose: function(){
$('#container').show();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment