最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp调用图片的大小
时间:2022-07-02 23:15:00 编辑:袖梨 来源:一聚教程网
asp调用图片的大小
function ResizeImage(imageid,limitWidth,limitHeight)
{
var image = new Image();
image.src = imageid.src;
if(image.width <= 0 && image.height <= 0) return;
if(image.width/image.height >= limitWidth/limitHeight)
{
if(image.width > limitWidth)
{
imageid.width = limitWidth;
imageid.height = (image.height*limitWidth)/image.width;
}
}
else if(image.height > limitHeight)
{
imageid.height = limitHeight;
imageid.width = (image.width*limitHeight)/image.height;
}
if (imageid.parentElement.tagName != "A")
{
imageid.onclick = function(){window.open(this.src);}
imageid.style.cursor = "hand";
}
}
window.onload = InitImages;
function InitImages()
{
//图片的约束宽度和高度
var max;
var max;
var imgs = document.getElementsByTagName("img");
for(var i=0; i < imgs.length; i++)
{
var img = imgs;
if(img.width>maxWidth||img.height>maxHeight)
ResizeImage(img, maxWidth, maxHeight);
}
}
相关文章
- 超级机器人大战Y生死之间怎么过 极限生存关卡攻略 09-16
- 三国望神州郭嘉怎么培养 郭嘉培养攻略 09-16
- 这城有良田杨玉环怎么配队 杨玉环配队攻略 09-16
- 异人之下灵墟币怎么获得 灵墟币获取攻略 09-16
- 鸣潮潮蚀模拟怎么过关 潮蚀模拟挂机过关攻略 09-16
- 鸣潮嘉贝莉娜怎么培养 嘉贝莉娜声骸武器选择推荐 09-16