lightbox js文件下载后直接覆盖到PJBlog目录就可以。装有旧版Lightbox JS的只需把Lightbox文件夹覆盖即可。
然后修改方法:
加header.asp里的代码
这几个代码插入前。
再修改common/ubbcode.asp内关于[img][/img]标签把UBB翻译成Html的代码。使之自动在图片链接上添加
rel="lightbox[roadtrip]" title="Http://lzw.me/" 这个代码。
其中[roadtrip]表示集合图片,就是把一个网页内的图片作为一个集合来打开;
title="Http://lzw.me/" 就是在图片左下显示的文字。
打开common/ubbcode.asp,找到
IF Not DisUBB=1 Then
IF Not DisIMG=1 Then
re.Pattern="([img])(.[^]]*)[/img]"
Set strMatchs=re.Execute(strContent)
For Each strMatch in strMatchs
tmpStr1=(strMatch.SubMatches(1))
strContent=replace(strContent,strMatch.Value,"",1,-1,0)
Next
把它修改成:
IF Not DisUBB=1 Then
IF Not DisIMG=1 Then
re.Pattern="([img])(.[^]]*)[/img]"
Set strMatchs=re.Execute(strContent)
For Each strMatch in strMatchs
tmpStr1=(strMatch.SubMatches(1))
strContent=replace(strContent,strMatch.Value,"",1,-1,0)
Next
修改common/common.js,pjblog会把宽大于500PX的图片缩小,变成500PX的图片,然后这个图片可以新开窗口
打开,而小于500PX的图片保持原状,并且不可以新窗口打开。
找到
//查找网页内宽度太大的图片进行缩放以及PNG纠正
function ReImgSize(){
for (i=0;i
{
document.images.width="500"
document.images.outerHTML='.src+'" target="_blank" title="
在新窗口打开图片">'+document.images.outerHTML+''
}
}
else{
if (document.images.width>400) {
document.images.title="在新窗口打开图片"
document.images.style.cursor="pointer"
document.images.onclick=function(e){window.open(this.src)}
}
}
}
}
把它修改成:
//查找网页内宽度太大的图片进行缩放以及PNG纠正
function ReImgSize(){
for (i=0;i
{
document.images.width="450"
}
}
else{
if (document.images.width>400) {
document.images.title="在新窗口打开图片"
document.images.style.cursor="pointer"
document.images.onclick=function(e){window.open(this.src)}
}
}
}
}
[mDown=http://www.levevio.cn/evio/vipdown/Lightbox.ra]下载此文件[/mDown] 传到博客根目录下。
静态的去后台重新生成下日志即可。