Skip to content

Instantly share code, notes, and snippets.

@zdienos
Forked from oliverdoetsch/resizeImage.js
Created September 3, 2018 11:57
Show Gist options
  • Save zdienos/e1878b42a95def62c3225945c97722c4 to your computer and use it in GitHub Desktop.
Save zdienos/e1878b42a95def62c3225945c97722c4 to your computer and use it in GitHub Desktop.
automatically resize blogger images to fit full blog post area
<script language='javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
$.fn.resizeImage = function() {
$('.post-body').table_to_div();
var postWidth = $('.post-body').width();
var sAttribut = /\/s\B\d{2,4}/;
$('.post-body').find('img').each(function(n, image){
var thisHeight = $(this).height();
var thisWidth = $(this).width();
var thisRatio = thisWidth / thisHeight;
var newWidth = postWidth;
var newHeight = Math.round(newWidth / thisRatio);
var newDimension;
if(thisWidth >= thisHeight) {
newDimension = newWidth
}
else {
newDimension = newHeight
};
var image = $(image);
image.removeAttr("width height");
image.css({
"margin-left": "0",
"padding":"0",
"box-sizing": "border-box",
"box-shadow": "0 0 0 rgba(0, 0, 0, 0)",
"width": newWidth + "px",
});
image.parent().removeAttr("style");
image.attr({src : image.attr('src').replace( sAttribut,'/' + 's' + newDimension )});
image.attr('width',newWidth);
});
};
$.fn.table_to_div = function() {
$(this).find('table').each(function(){
$(this).find('a').unwrap().unwrap();
$(this).find('.tr-caption').unwrap();
$(this).replaceWith( $('table').html()
.replace(/<tbody/gi, "<div class='separator' style='clear: both; text-align: center'")
.replace(/<tr/gi, "<div style='text-align: center'")
.replace(/<\/tr>/gi, "</div>")
.replace(/<td/gi, "<div")
.replace(/<\/td>/gi, "</div>")
.replace(/<\/tbody/gi, "<\/div")
);
});
};
$('body').resizeImage();
$(window).resize(function() {
$('body').resizeImage();
});
});
//]]>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment