Javascript动态图像大小调整
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javascript动态图像大小调整相关的知识,希望对你有一定的参考价值。
function ResizeImage(image, maxwidth, maxheight) { if (image.className == "Thumbnail") { w = image.width; h = image.height; if( w == 0 || h == 0 ) { image.width = maxwidth; image.height = maxheight; } else if (w > h) { if (w > maxwidth) image.width = maxwidth; } else { if (h > maxheight) image.height = maxheight; } image.className = "ScaledThumbnail"; } }
以上是关于Javascript动态图像大小调整的主要内容,如果未能解决你的问题,请参考以下文章