• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • 如何讓圖片自動縮放以適合界面大小

    發表于:2007-06-21來源:作者:點擊數: 標簽:
    如何讓圖片自動縮放以適合界面大小,拿出你的Editplus,打開c_function.asp文件,找到UBBCode函數,在第417行有如下語句 IfInstr(strType,"[image]")0AndZC_UBB_IMAGE_ENABLEThen '[img] objRegExp.Pattern="(\[IMG=)([0-9]*),([0-9]*),(.*)(\])(.+?)(\[\/IM

       
      如何讓圖片自動縮放以適合界面大小,拿出你的Editplus,打開c_function.asp文件,找到UBBCode函數,在第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"" alt=""$4"" title=""$4"" width=""$2"" height=""$3""/>")

        objRegExp.Pattern="(\[IMG=)([0-9]*),(.*)(\])(.+?)(\[\/IMG\])"
        strContent= objRegExp.Replace(strContent,"<img src=""$5"" alt=""$3"" title=""$3"" width=""$2""/>")

        objRegExp.Pattern="(\[IMG\])(.+?)(\[\/IMG\])"
        strContent= objRegExp.Replace(strContent,"<img src=""$2"" alt="""" title=""""/>")


      End If


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

    下面是已經改好的

      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='javascript:if(this.width>400)this.width=400;' src=""$6"" alt=""$4"" title=""$4"" width=""$2"" height=""$3""/>")

        objRegExp.Pattern="(\[IMG=)([0-9]*),(.*)(\])(.+?)(\[\/IMG\])"
        strContent= objRegExp.Replace(strContent,"<img onload='javascript:if(this.width>400)this.width=400;' src=""$5"" alt=""$3"" title=""$3"" width=""$2""/>")

        objRegExp.Pattern="(\[IMG\])(.+?)(\[\/IMG\])"
        strContent= objRegExp.Replace(strContent,"<img onload='javascript:if(this.width>400)this.width=400;' src=""$2"" alt="""" title=""""/>")


      End If


    注意:只有使用了UBB標簽[IMG]的才可以實現自動縮放

    原文轉自:http://www.kjueaiud.com

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>