博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript 图片等比例缩放效果
阅读量:5246 次
发布时间:2019-06-14

本文共 984 字,大约阅读时间需要 3 分钟。

// 图片等比例缩放效果 方法一 、 

function fixImage(i,w,h){
var ow = i.width;
var oh = i.height;
var rw = w/ow;
var rh = h/oh;
var r = Math.min(rw,rh);
if (w ==0 && h == 0){
r = 1;
}else if (w == 0){
r = rh<1?rh:1;
}else if (h == 0){
r = rw<1?rw:1;
}
if(ow!=0 && oh!=0){
i.width = ow * r;
i.height = oh * r;
}else{
var __method = this, args = $A(arguments);
window.setTimeout(function() {
fixImage.apply(__method, args);
}, 200);
}
i.onload = function(){}
}
// 图片等比例缩放效果 方法二、

function DrawImage(ImgD,iwidth,iheight){

//参数(图片,允许的宽度,允许的高度)
if(ImgD.width>0 && ImgD.height>0){
flag=true;
// 如果图片的实际比例大于的想要比例 ,则去根据宽大小来判断高
if(ImgD.width/ImgD.height>= iwidth/iheight){
if(ImgD.width>iwidth){
ImgD.width=iwidth;
ImgD.height=(ImgD.height*iwidth)/ImgD.width;
}
ImgD.alt=ImgD.width+"×"+ImgD.height;
}else{
if(ImgD.height>iheight){
ImgD.height=iheight;
ImgD.width=(ImgD.width*iheight)/ImgD.height;
}
ImgD.alt=ImgD.width+"×"+ImgD.height;
}
}
}

转载于:https://www.cnblogs.com/bailuobo/archive/2012/10/18/2729153.html

你可能感兴趣的文章
303. Range Sum Query - Immutable
查看>>
【★】浅谈计算机与随机数
查看>>
Leetcode 226: Invert Binary Tree
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>
第16周总结
查看>>
C#编程时应注意的性能处理
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>
使用C#交互快速生成代码!
查看>>