Skip to content

Instantly share code, notes, and snippets.

@oblik
Created October 30, 2013 13:03
Show Gist options
  • Save oblik/7232318 to your computer and use it in GitHub Desktop.
Save oblik/7232318 to your computer and use it in GitHub Desktop.
// debulked onresize handler
function on_resize(c,t){onresize=function(){clearTimeout(t);t=setTimeout(c,100)};return c};
on_resize(function() {
$('.encadres_item span').each(function() {
var $img = $(this);
var h = $img.height();
$img.css('margin-top', + h / -2 + "px");
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment