代码如下:

Maison >interface Web >js tutoriel >兼容IE和FF的图片上传前预览js代码_javascript技巧

兼容IE和FF的图片上传前预览js代码_javascript技巧

WBOY
WBOYoriginal
2016-05-16 17:33:031056parcourir

效果图如下:
兼容IE和FF的图片上传前预览js代码_javascript技巧 
代码如下:

复制代码 代码如下:





本地图片预览

";
}
}
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.round(height / rateWidth);
}else
{
param.width = Math.round(width / rateHeight);
param.height = maxHeight;
}
}

param.left = Math.round((maxWidth - param.width) / 2);
param.top = Math.round((maxHeight - param.height) / 2);
return param;
}




兼容IE和FF的图片上传前预览js代码_javascript技巧






Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn