Skip to content

Instantly share code, notes, and snippets.

@sofish
Created February 17, 2011 09:23
Show Gist options
  • Select an option

  • Save sofish/831377 to your computer and use it in GitHub Desktop.

Select an option

Save sofish/831377 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Sample</title>
<style>
.cnt{text-align:center;width:600px;height:300px;margin:0 auto;border:1px solid #ddd;}
</style>
</head>
<body>
<div class="cnt">
<img id="img" src="http://www.wallcoo.com/1920x1440/1920x1440_nature_wallpapers_02/wallpapers/1920x1440/%5Bwallcoo.com%5D_1920X1440_nature_wallpapers_aVistas005.jpg" alt="alipay" />
</div>
<script>
var img = document.getElementById('img'),
resizeImg = function(img, maxWidth, maxHeight){
var w = img.width, h = img.height;
maxWidth/maxHeight < w/h ? img.width = maxWidth : img.height = maxHeight;
};
resizeImg(img, 500, 300);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment