Html.js
资源名称:1.rar [点击查看]
上传用户:yrf020
上传日期:2007-07-24
资源大小:1287k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
HTML/CSS
- /*按比例生成缩略图*/
- function DrawImage(MyPic,W,H){
- var flag=false;
- var image=new Image();
- image.src=MyPic.src;
- if(image.width>0 && image.height>0){
- flag=true;
- if(image.width/image.height>= W/H){
- if(image.width>W){
- MyPic.width=W;
- MyPic.height=(image.height*W)/image.width;
- }
- else{
- MyPic.width=image.width;
- MyPic.height=image.height;
- }
- }
- else{
- if(image.height>H){
- MyPic.height=H;
- MyPic.width=(image.width*H)/image.height;
- }
- else{
- MyPic.width=image.width;
- MyPic.height=image.height;
- }
- }
- }
- }
English
