當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

關(guān)于利用ASP使圖片自動縮放以適合界面大小的實例代碼分享

作者:  來源:  發(fā)布時間:2011-7-9 11:29:03  點擊:

本文將給大家分享學(xué)習(xí)的是關(guān)于利用ASP使圖片自動縮放以適合界面大小的實例代碼分享,希望能夠給大家?guī)韼椭騿l(fā)。

如何讓圖片自動縮放以適合界面大小,拿出你的Editplus,打開c_function.asp文件,找到UBBCode函數(shù),在第417行有如下語句

If Instr(strType,"[image]")>0  And ZC_UBB_IMAGE_ENABLE Then
  '[img]
    objRegExp.Pattern="(\[IMG=)([0-9]*),([0-9]*),(.*)(\])(.+?)(\[\/IMG\])"
    strContent= objRegExp.Replace(strContent,"<img src=""$6"" title=""$4"" width=""$2"" height=""$3""/>")
    objRegExp.Pattern="(\[IMG=)([0-9]*),(.*)(\])(.+?)(\[\/IMG\])"
    strContent= objRegExp.Replace(strContent,"<img src=""$5"" title=""$3"" width=""$2""/>")
    objRegExp.Pattern="(\[IMG\])(.+?)(\[\/IMG\])"
    strContent= objRegExp.Replace(strContent,"<img src=""$2"" title=""""/>")
  End If

  在其中加上onload='java script:if(this.width>400)this.width=400;',這里400是要讓超過400的圖片小于400,你可以自己設(shè)定寬度.

  下面是已經(jīng)改好的

If Instr(strType,"[image]")>0  And ZC_UBB_IMAGE_ENABLE Then
  '[img]
    objRegExp.Pattern="(\[IMG=)([0-9]*),([0-9]*),(.*)(\])(.+?)(\[\/IMG\])"
    strContent= objRegExp.Replace(strContent,"<img onload='java script:if(this.width>400)this.width=400;' src=""$6"" title=""$4"" width=""$2"" height=""$3""/>")
    objRegExp.Pattern="(\[IMG=)([0-9]*),(.*)(\])(.+?)(\[\/IMG\])"
    strContent= objRegExp.Replace(strContent,"<img onload='java script:if(this.width>400)this.width=400;' src=""$5"" title=""$3"" width=""$2""/>")
    objRegExp.Pattern="(\[IMG\])(.+?)(\[\/IMG\])"
    strContent= objRegExp.Replace(strContent,"<img onload='java script:if(this.width>400)this.width=400;' src=""$2"" title=""""/>")
  End If

相關(guān)軟件

相關(guān)文章

文章評論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z