目前共有1篇帖子。 內容轉換:不轉換▼
 
點擊 回復
52 0
【代码】javascript按比例缩小图片
初入江湖 七級
1樓 發表于:2010-12-19 10:57
function qmd_size(that){
 var new_width=436;
 var new_height=200;
 var src_width=that.width;
 var src_height=that.height;
 if (src_width>new_width || src_height>new_height){
  var radio=Math.max((src_width/new_width),(src_height/new_height));
  var width=Math.ceil(src_width/radio);
  var height=Math.ceil(src_height/radio);
  that.width=width;
  that.height=height;
 }return{
  width:width, //宽
  height:height //高
 }
}

回復帖子

內容:
抱歉,本吧禁止發帖
抱歉,本吧禁止發帖
用戶名: 您目前是匿名發表
(快捷鍵:Ctrl+Enter)
 

本帖信息

點擊數:52 回複數:0
評論數: ?
作者:产品的注销
最後回復:产品的注销
最後回復時間:2010-12-19 10:57
 
©2010-2024 Arslanbar Ver2.0
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。