首页滚动公告问题
我在index.dwt中加了如下代码,想实现公告内容向上滚动,为什么首页就是没有反应呢
<div class="globalModule">
<h3>{$lang.shop_notice}</h3>
<div class="globalModuleContent">
<marquee onmouseover=this.stop() onmouseout=this.start()
scrollAmount=1
scrollDelay=4 direction=up
width=168 height=110
style="line-height: 120%; ">
{$shop_notice}
</marquee>
</div>
</div>
|