[求助]xslt滚动效果
<?xml version="1.0" encoding="GB2312" ?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="4.0" indent="no"/>
<xsl:template match="/Goodo">
<marquee behavior="scroll" direction="left" height="128" width="500" onmouseover='this.scrollAmount=0;' onmouseout='this.scrollAmount=3;' scrolldelay="80">
<table height="128" border="0" cellpadding="0" cellspacing="0">
<tr>
<xsl:apply-templates select="Record"/>
</tr>
</table>
</marquee>
</xsl:template>
<xsl:template match="Record">
<td width="144"><table width="144" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="144" height="114" background="images/bg05.gif" class="TableBody17" <img src="{@ContentUrl}" width="122" height="90" alt="查看大图片" border="0"/></td>
</tr>
<tr>
<td><xsl:value-of select="@ContentTitle"/></td>
</tr>
</table>
</td>
<td width="34"></td>
</xsl:template>
</xsl:stylesheet>
上面的代码得到的是从右到左一次滚动,我现在想让他不间断的从右到做滚动,怎么改