所属分类:PHPBB论坛程序,插件收集与修改
因为发帖时候贴的图片尺寸太大,有时候会超出版面,所以需要修改下,让它不影响帖子的美观.
转载自http://cnc.phpbbchina.com/forum/viewtopic.php?f=5&t=2413&p=11976&hilit=%E7%BC%A9%E7%95%A5%E5%9B%BE#p11976
用记事本打开
论坛目录/styles/您正在使用的主题目录/template/bbcode文件
找到
[code]<!-- BEGIN img --><img src="{URL}" alt="{L_IMAGE}" /><!-- END img -->[/code]
替换为
[code]<!-- BEGIN img --><img src="{URL}" onload="javascript:if(this.width >= screen.width * 0.7) this.width = 700" onclick="javascript:if(this.width == 700) {this.width = screen.width * 0.7} else {if(this.width >= screen.width * 0.69) {this.width = 700}};" ondblclick="javascript:window.open('{URL}'); window.event.returnValue=false;" border="0" alt="click" title="click" /><!-- END img -->[/code]
转载自http://cnc.phpbbchina.com/forum/viewtopic.php?f=5&t=2413&p=11976&hilit=%E7%BC%A9%E7%95%A5%E5%9B%BE#p11976
用记事本打开
论坛目录/styles/您正在使用的主题目录/template/bbcode文件
找到
[code]<!-- BEGIN img --><img src="{URL}" alt="{L_IMAGE}" /><!-- END img -->[/code]
替换为
[code]<!-- BEGIN img --><img src="{URL}" onload="javascript:if(this.width >= screen.width * 0.7) this.width = 700" onclick="javascript:if(this.width == 700) {this.width = screen.width * 0.7} else {if(this.width >= screen.width * 0.69) {this.width = 700}};" ondblclick="javascript:window.open('{URL}'); window.event.returnValue=false;" border="0" alt="click" title="click" /><!-- END img -->[/code]