[4.01][加強] 修正圖片隨鼠標滾輪縮放
【適用版本】4.0.1 & 4.32
【插件來源】修改轉貼自晨秋 (
http://bbs.mychat.to/read.php?tid=331057 )
【插件類型】加強
【是否升級資料庫】否
【插件介紹】http://bbs.mychat.to/read.php?tid=331057 晨秋發佈此處之圖片隨鼠標滾輪縮放在PHPWIND 4.0.1 & 4.32版本發生錯誤;在簽名欄以及版面無法縮放圖形。回應 RETURM TWIND_CODE_1" 。
引用晨秋***適用於3.01之前版本複製程式
修改文件 /require/bbscode.php
1.在頂部增加
<script>
function bbimg(o){
var zoom=parseInt(o.style.zoom,10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%'return false;
}
</script>
2.搜索function cvpic($url,$type=''),把整個函數部分替換成下面內容
function cvpic($url,$type='')
{
global $db_bbsurl,$picpath,$attachpath;
global $code_num,$code_htm;
$code_num++;
if(strtolower(substr($url,0,4))!='http' && !$type)$url='http'.$url;
$code="<a href='$url' TARGET=_blank><img ALT='可使用鼠標滾輪縮放' src='$url' border=0 onload='javascript:if(this.width>screen.width-460)this.width=screen.width-460' onmousewheel='return bbimg(this)'></a>";
$code_htm[-1][$code_num]=$code;
if($type){
return $code;
} else{
return "[\twind_code_$code_num\t]";
}
}
引用晨秋***適用於4.01之後版本複製程式
修改文件 /require/bbscode.php
1.在頂部增加
<script>
function bbimg(o){
var zoom=parseInt(o.style.zoom,10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%'return false;
}
</script>
2.搜索function cvpic($url,$type=''),把整個函數部分替換成下面內容
function cvpic($url,$type='')
{
global $db_bbsurl,$picpath,$attachpath;
global $code_num,$code_htm;
$code_num++;
if(strtolower(substr($url,0,4))!='http' && !$type)$url='http'.$url;
$code="<a href='$url' TARGET=_blank><img ALT='可使用鼠標滾輪縮放' src='$url' border=0 onload='javascript:if(this.width>screen.width-460)this.width=screen.width-460' onmousewheel='return bbimg(this)'></a>";
$code_htm[-1][$code_num]=$code;
if($type){
return $code;
} else{
return "<\twind_code_$code_num\t>";
}
}
這裡不同了
return "<\twind_code_$code_num\t>";