动网论坛公告滚动实现办法_动网论坛教程
首页单条滚动公告的实现方法。
打开后台的风格界面模板总管理→分页面模板(page_index)→template.html(0) ,找到这段代码:
<table cellspacing=1 cellpadding=3 align=center border=0 width={$width}><tr><td align=center width=100% valign=middle colspan=2> <a href="javascript:openScript('announcements.asp?action=showone&boardid=0',500,400)"><B>{$news}</B></a>({$newstime}) </td></tr></table>
将它换成如下的代码:
<table cellspacing=1 cellpadding=3 align=center border=0 width={$width}><tr><td align=center width=100% valign=middle colspan=2> <marquee scrollamount=3 onmouseover=this.stop(); onmouseout=this.start();> <B><a href="javascript:openScript('announcements.asp?action=showone&boardid=0',500,400)"><font color=#39B730>{$news}</font></a></B>({$newstime})</marquee></td></tr></table>
如果要在公告文字的前面加上一个小图片的话,可在上面的代码<B><A HREF="javascript:openScript('announcements.asp?action=showone&boardid=0',500,400)">之前插入以下代码:
<img src="images/others/dog.gif">
其中dog.gif是要插入的图片地址。
-------------------------------------------------------------------------------------- 二、首页多条滚动公告的实现方法。
利用官方公布的首页调用文件tongji.asp来实现,请先上传首页调用的相关文件。
将上面说的单条滚动代码中的 <marquee scrollamount=3 onmouseover=this.stop(); onmouseout=this.start();> <B><a href="javascript:openScript('announcements.asp?action=showone&boardid=0',500,400)"><font color=#39B730>{$news}</font></a></B>({$newstime})</marquee>
替换成:
<script src=tongji.asp?orders=5&boardid=all&model=2&n=5&tlen=></script>
- 相关链接:
- 教程说明:
动网论坛教程-动网论坛公告滚动实现办法。