Skip to content

Instantly share code, notes, and snippets.

@axyz
Created August 29, 2015 18:42
Show Gist options
  • Save axyz/5d5f3b1edfb915a7cfbf to your computer and use it in GitHub Desktop.
Save axyz/5d5f3b1edfb915a7cfbf to your computer and use it in GitHub Desktop.
function _perfectRowsNumber(photos, screenWidth, screenHeight) {
const idealHeight = parseInt(screenHeight / 2, 10);
const totalWidth = photos.reduce((sum, img) => sum + img.ratio * idealHeight, 0);
return Math.round(totalWidth / screenWidth);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment