中文(简体)
中文(简体)
中文(繁体)
한국어
日本語
English
Português
Español
Русский
العربية
Indonesia
Deutsch
Français
ภาษาไทย
网站地图大全
最新更新
首页
源码下载
编程相关
建站资源
网页设计教程
网络编程教程
首页
>
网络编程教程
>
ASP入门教程
如何让图片自动缩放以适合界面大小
作者:Eve Cole
更新时间:2009-06-25 17:41:30
如何让图片自动缩放以适合界面大小,拿出你的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
相关文章
关于asp.net HttpUtility.UrlDecode解码问题
2013-03-21
从ASP转到ASP.NET过程中常见问题收集
2011-04-26
用面向对象封装ASP中的cookie操作
2011-04-26
ASP.NET 网站中的共享代码文件夹
2011-04-26
使用ASP调用C#写的COM组件
2011-04-26
asp.net 用户控件和自定义控件总结
2011-04-26
asp程序员使用asp.net中服务器控件的困惑
2011-04-26
使用asp.net中的跟踪功能
2011-04-26
asp.net程序中如何自动生成姓名拼音
2010-07-14
asp.net 跑马灯 怎样从文件夹里读取图片,怎样实现?
2010-07-12
怎样能做好asp网站的安全性维护,需要注意哪些细节或者说有什么技巧吗?
2010-07-12
Asp.Net 4.0 SEO增强之 UrlRouting
2010-05-26