Skip to content

Instantly share code, notes, and snippets.

@thisislawatts
Created June 23, 2014 09:57
Show Gist options
  • Save thisislawatts/55e7c32a62a60f096c9a to your computer and use it in GitHub Desktop.
Save thisislawatts/55e7c32a62a60f096c9a to your computer and use it in GitHub Desktop.
Image Sizing
min = function( a, b ) {
return a > b ? b : a;
};
max = function( a, b) {
return a > b ? a : b;
};
coverDimensions = function ( child_w, child_h, container_w, container_h ) {
var scale_factor = max( container_w / child_w, container_h / child_h );
return {
width: child_w * scale_factor,
height: child_h * scale_factor
};
};
containDimensions = function ( child_w, child_h, container_w, container_h ) {
var scale_factor = min( container_w / child_w, container_h / child_h );
return {
width: child_w * scale_factor,
height: child_h * scale_factor
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment