09-02
08

图片自定义缩小

代码
onload="ReImgSize()"2008-12-13 15:50<img src="UpFile/s2008516145348.jpg" border="0" onload="ReImgSize()" />


<script language="javascript">
function ReImgSize() {

    for (var index = 0; index < document.images.length; index++) {

        var widthRestriction = 200;
        var heightRestriction = 150;
        var rate = document.images[index].width / document.images[index].height;

        if (document.images[index].width > widthRestriction) {
            document.images[index].width = widthRestriction;
            document.images[index].height = widthRestriction / rate;
        } else if (document.images[index].height > heightRestriction) {
            document.images[index].height = heightRestriction;
            document.images[index].width = heightRestriction * rate;
        }
    }
}
</script>



文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: 图片 缩小
相关日志:
评论: 0 | 引用: 0 | 查看次数: 322
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭