Maison >interface Web >js tutoriel >js 图片等比例缩放代码_图象特效

js 图片等比例缩放代码_图象特效

WBOY
WBOYoriginal
2016-05-16 18:27:211126parcourir
复制代码 代码如下:

var scaleImage = function(o, w, h){
var img = new Image();
img.src = o.src;
if(img.width >0 && img.height>0)
{
if(img.width/img.height >= w/h)
{
if(img.width > w)
{
o.width = w;
o.height = (img.height*w) / img.width;
}
else
{
o.width = img.width;
o.height = img.height;
}
o.alt = img.width + "x" + img.height;
}
else
{
if(img.height > h)
{
o.height = h;
o.width = (img.width * h) / img.height;
}
else
{
o.width = img.width;
o.height = img.height;
}
o.alt = img.width + "x" + img.height;
}
}
}

HTML
复制代码 代码如下:


pic


js 图片等比例缩放代码_图象特效


js 图片等比例缩放代码_图象特效


js 图片等比例缩放代码_图象特效



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