|
打开inc/main.js 找到
1 S* q) U9 l3 n' t5 K( G $ h$ t9 P& \% g H, l
//图片自动调整的模式,1为按比例调整 ,2 按大小调整。 var resizemode=2; function imgresize(o){ if (resizemode==2 || o.onmousewheel){ if(o.width > 500 ){ o.style.width='500px'; } if(o.height > 800){ o.style.height='800px';
) e$ Y& z; x( O/ b$ K& Y
7 ^; Y% k, @& |5 ~8 d9 @6 I% X修改这里的数字即可,建议宽度<800。 |