图片按比例缩放:JavaScript实现网页图片等比例缩放, 鼠标..

function resizeimg(ImgD,iwidth,iheight) { var image=new Image(); image.src=ImgD.src; if(image.width0 && image.height0){ if(image.width/image.height= iwidth/iheight){ ... [阅读全文]

图片按比例缩放:图片等比例缩放代码

var flag=false;function DrawImage(ImgD,iwidth,iheight){ var image= Image; image.src=ImgD.src; (image.width0 && image.height0){ flag=true; (image.width/image.height= iwidth/iheight){ ... [阅读全文]

图片等比例缩放:javascript实现图片按比例缩放

很多人需要代码赶紧都换上吧别让图片把页面撑破了呵呵function resizeimg(ImgD,iwidth,iheight) { var image= Image; image.src=ImgD.src; (image.width0 && image.height0){ (image.width/imag... [阅读全文]
1 共1条 分1页