注册
找回密码
账号 记住
2456
16
1713
8
2
用CSS
<style type="text/css">img {width:expression(this.width>600?"480px":this.width+"px");}</style>
图片宽度大于600像素都强制显示为480像素宽
107
0
4445
15
<SCRIPT language=JavaScript type=text/JavaScript>//改变图片大小function resizepic(thispic){ if(thispic.width>400) thispic.width=400; }//无级缩放图片大小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>
内容页模板加上这段代码
1138
4
1