最近几天用帝国新闻模型做了一个图片站,感觉用新闻做图片要比图片模型方便很多,尤其是在修改了TranMore.php这个文件以后使更新变的更加方便了! 演示:www.ysrenti.com 我们修改的这个文件是图片批量上传的控制文件,需要修改的地方如下 从173行开始 <h2 class=”tab”> <font color=”#FFFFFF”>参数设置</font> </h2> <script type=”text/javascript”>tb1.addTabPage( document.getElementById( “imginfo” ) );</script> <table width=”100%” border=”0″ align=”center” cellpadding=”3″ cellspacing=”1″ class=”tableborder”> <tr bgcolor=”#FFFFFF”> <td width=”112″ height=”25″>每行/页显示</td> <td width=”351″> <input name=”line” type=”text” id=”line” value=”1″ size=”6″> 个图片</td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>对齐方式</td> <td> <input name=”align” type=”radio” value=”left”> 居左 <input name=”align” type=”radio” value=”center” checked> 居中 <input name=”align” type=”radio” value=”right”> 居右</td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>图片大小</td> <td> <input name=”width” type=”text” id=”width” value=”300″ size=”6″> × <input name=”height” type=”text” id=”height” value=”300″ size=”6″> (宽×高)</td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>图片边框</td> <td> <input name=”imgborder” type=”text” id=”imgborder” value=”0″ size=”6″></td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>分割形式</td> <td> <select name=”exptype” id=”exptype”> <option value=”0″>表格</option> <option value=”1″>分页码</option> </select></td> 我主要修改了这段,你可以根据自己的要求修改,比如我是这样设置的 <h2 class=”tab”> <font color=”#FFFFFF”>参数设置</font> </h2> <script type=”text/javascript”>tb1.addTabPage( document.getElementById( “imginfo” ) );</script> <table width=”100%” border=”0″ align=”center” cellpadding=”3″ cellspacing=”1″ class=”tableborder”> <tr bgcolor=”#FFFFFF”> <td width=”112″ height=”25″>每行/页显示</td> <td width=”351″> <input name=”line” type=”text” id=”line” value=”2″ size=”6″> 个图片</td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>对齐方式</td> <td> <input name=”align” type=”radio” value=”left”> 居左 <input name=”align” type=”radio” value=”center” checked> 居中 <input name=”align” type=”radio” value=”right”> 居右</td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>图片大小</td> <td> <input name=”width” type=”text” id=”width” value=”" size=”6″> × <input name=”height” type=”text” id=”height” value=”" size=”6″> (宽×高)</td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>图片边框</td> <td> <input name=”imgborder” type=”text” id=”imgborder” value=”0″ size=”6″></td> </tr> <tr bgcolor=”#FFFFFF”> <td height=”25″>分割形式</td> <td> <select name=”exptype” id=”exptype”> <option value=”1″>分页码</option> </select></td> 设置成每个页面显示2个图片,用分页码分割,还有用图片的自由大小不用默认的300*300! 这样用起来非常方便,不用每次都设置!加快了更新速度!