在做产品展示的时候经常要求产品图片等比例缩小并居中显示
来看看根据以前的一个函数进化而来的更完善的js函数:
[js]
//等比例缩小图片
function clacImgZoomParam( maxWidth, maxHeight, width, height ){
var param = {top:0, left:0, width:width, height:height};
if( width>maxWidth || height>maxHeight )
{
rateWidth = width / maxWidth;
rateHeight = height / maxHeight;
if( rateWidth > rateHeight )
{
param.width = maxWidth;
param.height = Math....