設置 | 登錄 | 註冊

目前共有1篇帖子。

【代碼】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 //高
 }
}

內容轉換:

回覆帖子
內容:
用戶名: 您目前是匿名發表。
驗證碼:
看不清?換一張
©2010-2025 Purasbar Ver3.0 [手機版] [桌面版]
除非另有聲明,本站採用知識共享署名-相同方式共享 3.0 Unported許可協議進行許可。