Skip to content

Instantly share code, notes, and snippets.

View mgauthier's full-sized avatar

Michael Gauthier mgauthier

  • Toronto, Ontario
View GitHub Profile
@mgauthier
mgauthier / image_fit.js
Created December 19, 2011 21:31
Image centering js
function fitImage(image_container, image_url, el, callback) {
//hide image until loaded
$(image_container,el).html('<img src="'+image_url+'"/>');
var image = $(image_container+' img',el);
$(image,el).css({
'display':'none'
})
//set a spinner animation in the background of the container