注册
找回密码
账号 记住
2146
3
78
0
各位大虾:
紧急求助呀!图片文章显示的时候有问题,如我在其他网站复制文章(含图片)添加后,若图片较小,则显示没问题,若原来图片较大,则显示位置偏左,且图片下面有源代码显示:screen.width-333……什么的,怎么处理呀?
2176
1
3.0自带的图片缩略图功能
但文章内容页模板必须有这段脚本代码
<SCRIPT language=JavaScript type=text/JavaScript>//改变图片大小function resizepic(o){ var maxwidth=550; //定义最大宽度var maxheight=800; //定义最大高度var a=new Image();a.src=o.srcif(a.width > maxwidth){ o.style.width=maxwidth;}if (a.height> maxheight){ o.style.height=maxheight; }}//无级缩放图片大小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>
124
还没开始用!