关于滚轮控制图片的小修改!!! 2007适用
关于滚轮控制图片的小修改!!! 2007适用
打开inc目录下的global.js,在底部加入
//放大缩小图片
function yuzi_img(e, o)
{
var zoom = parseInt(o.style.zoom, 10) || 100;
zoom += event.wheelDelta / 12;
if (zoom > 0) o.style.zoom = zoom + '%';
return false;
}
打开setup.asp
找到
str=ReplaceText(str,"\[IMG\]([^[]*)(\[\/IMG\])","<img border=0 src=$1>")
替换成
str=ReplaceText(str,"\[IMG\]([^"&CHR(34)&"[]*)(\[\/IMG\])","<img border=0 src=$1 onmousewheel='return yuzi_img(event,this)' onload='javascript:if(this.width>body.clientHeight)this.width=body.clientHeight'>")
OK了
同样适用于2007,2007要修改的是BBSXP_class.asp
演示地址:http://cbgzs.zhxcd.cn/ShowPost.asp?ThreadID=722
[此帖子已被 admin 在 2007-8-22 15:32:32 编辑过]
[此帖子已被 admin 在 2007-12-28 17:19:41 编辑过]
登录后方可回帖