在网上看到一个教程,但只是适合Bbsxp的插件,有高手可以设计成DZ2.0、2.5适用的吗?
功能:
1,上传图片的自动缩小
2,转贴图片格式的缩小
支持ybb代码和htm代码
已经发过的需要重新编辑并确定编辑才能起作用。
方法:
打开setup.asp 找到105行左右 str=ReplaceText(str,"\[IMG\]([^"&CHR(34)&"[]*)(\[\/IMG\])","")
用下面的代码替换
'图片自动缩小
str=ReplaceText(str,"\[IMG\]([^"&CHR(34)&"[]*)(\[\/IMG\])","screen.width*0.76) {this.resized=true; this.width=screen.width*0.76; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}""if(this.width>screen.width*0.76) {this.resized=true; this.width=screen.width*0.76; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}""if(!this.resized) {return true;} else {window.open('$1');}""return imgzoom(this);"">")
str=ReplaceText(str,")","screen.width*0.76) {this.resized=true; this.width=screen.width*0.76; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}""if(this.width>screen.width*0.76) {this.resized=true; this.width=screen.width*0.76; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}""if(!this.resized) {return true;} else {window.open('$1');}""return imgzoom(this);"">")
'图片自动缩小结束 |