Created
June 23, 2014 09:57
-
-
Save thisislawatts/55e7c32a62a60f096c9a to your computer and use it in GitHub Desktop.
Image Sizing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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