图片自动缩小 点击放大_图象特效
程序员文章站
2023-12-25 15:25:27
...
如果不支持网页对话框就再新窗口打开
目的: 图片自动缩小 点击放大
输入: 无
返回: 无
function $(obj){
return document.getElementById(obj);
}
function ResizeImage(objImage,maxWidth) {
try{
if(maxWidth>0){
var objImg = $(objImage);
if(objImg.width()>maxWidth){
objImg.width(maxWidth).css("cursor","pointer").click(function(){
try{showModelessDialog(objImage.src);}catch(e){window.open(objImage.src);}
});
}
}
}catch(e){};
}
目的: 图片自动缩小 点击放大
输入: 无
返回: 无
function $(obj){
return document.getElementById(obj);
}
function ResizeImage(objImage,maxWidth) {
try{
if(maxWidth>0){
var objImg = $(objImage);
if(objImg.width()>maxWidth){
objImg.width(maxWidth).css("cursor","pointer").click(function(){
try{showModelessDialog(objImage.src);}catch(e){window.open(objImage.src);}
});
}
}
}catch(e){};
}