Skip to content

Instantly share code, notes, and snippets.

@philippamarkovics
Created September 20, 2010 14:48
Show Gist options
  • Save philippamarkovics/588005 to your computer and use it in GitHub Desktop.
Save philippamarkovics/588005 to your computer and use it in GitHub Desktop.
var ratio = height / width,
viewport = window.getSize();
var w, h;
if ((viewport.y / viewport.x) > ratio) {
h = viewport.y;
w = viewport.x / ratio;
}
else {
h = viewport.y * ratio;
w = viewport.x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment