Skip to content

Instantly share code, notes, and snippets.

@cedmond
Created October 14, 2013 17:07
Show Gist options
  • Save cedmond/6978788 to your computer and use it in GitHub Desktop.
Save cedmond/6978788 to your computer and use it in GitHub Desktop.
$j(function(){
var bgPhoto = $j('#bgphoto');
$j(window).on('load resize',function(evt){
if(evt.type=='load'){bgPhoto.css({'top':'50%','left':'50%'})}
bgPhoto.css('margin-top', -bgPhoto.height()/2); //set Y position
bgPhoto.css('margin-left', -bgPhoto.width()/2); //set X position
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment