代码如下:

Heim >Web-Frontend >js-Tutorial >兼容IE和FF的图片上传前预览js代码_javascript技巧

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

WBOY
WBOYOriginal
2016-05-16 17:33:031028Durchsuche

效果图如下:
兼容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技巧






Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn