There is currently 1 post.
Font size: Small - 100% (Default)  Content converter: No conversion
 
Clicks Replies
626 0
【代码】javascript按比例缩小图片
产品的注销
初入江湖 七级
Reply
Floor 1 Posted at: 12/19/10 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 //高
 }
}
Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.
(Shortcut key: Ctrl+Enter)
Post Information
Clicks: 626 Replies: 0
Author: 产品的注销
Last reply: 产品的注销
Last reply time: 12/19/10 10:57
Bar Hot Posts
Bar Good Posts
Announcements