图片尺寸自动缩放
作者:笨花 日期:2007-11-12
找到以下代码,此代码效果是图片宽度大于550像素自动缩放到550像素宽
将数值改为合适自己blog的大小即可
复制内容到剪贴板
程序代码
程序代码//查找网页内宽度太大的图片进行缩放以及PNG纠正
function ReImgSize(){
for (i=0;i<document.images.length;i++)
{
if (document.all){
if (document.images.width>550)
{
document.images.width="550"
document.images.outerHTML='<a href="'+document.images.src+'" target="_blank" title="在新窗口打开图片">'+document.images.outerHTML+'</a>'
}
}
else{
if (document.images.width>400) {
document.images.title="在新窗口打开图片"
document.images.style.cursor="pointer"
document.images.onclick=function(e){window.open(this.src)}
}
}
}
}
function ReImgSize(){
for (i=0;i<document.images.length;i++)
{
if (document.all){
if (document.images.width>550)
{
document.images.width="550"
document.images.outerHTML='<a href="'+document.images.src+'" target="_blank" title="在新窗口打开图片">'+document.images.outerHTML+'</a>'
}
}
else{
if (document.images.width>400) {
document.images.title="在新窗口打开图片"
document.images.style.cursor="pointer"
document.images.onclick=function(e){window.open(this.src)}
}
}
}
}
评论: 0 | 引用: 0 | 查看次数: -
发表评论
上一篇
下一篇

文章来自:
Tags:
相关日志: