别傻了,这个其实人家答案已经十分明显了,在此我再为你把源代码发布一次,如下:
<marquee direction="left" scrollamount="3" onMouseOver="this.stop()" onMouseOut="this.start()">
            <img src="images/scroll/first.gif" width="133" height="100" alt="杨树"><img src="images/scroll/1.gif" alt="枣树" width="133" height="100"><img src="images/scroll/2.gif" alt="雪松" width="133" height="100"><img src="images/scroll/3.gif" alt="树挂" width="133" height="100"><img src="images/scroll/4.gif" alt="龙山雪景" width="133" height="100"><img src="images/scroll/5.gif" alt="瑞雪红豆" width="133" height="100"> 
            </marquee>

解决方案 »

  1.   

    use the solution provided by xinyunyishui, add onmouseover/onmouseout event handler for the container table and use clearInterval to stop the movement, for example:<div style="width:452px;height:100px;overflow:hidden"> 
    <table width="452" border="0" cellspacing="0" cellpadding="0" id="scrollimg">
    <tr> 
    <td id="simg">
    <TABLE width="452" border="0" id='tt' onmouseover="stopScroll(true)"
     onmouseout="stopScroll(false)">
    <tr><td nowrap>asdfas ad324 asdf
    <img src="http://www.csdn.net/images/csdn.gif" alt="csdn">
    <img src="http://www.google.com/images/web_logo_left.gif" alt="google">
    </td></tr>
    </TABLE>
    </td>
    <td id="simg1"></td>
    </tr>
    </table>
    </div>
    <SCRIPT LANGUAGE="JavaScript">
    var timerID=null;
    function newsScroll() {
    if(scrollimg.parentNode.scrollLeft!=(scrollimg.clientWidth/2))
    scrollimg.parentNode.scrollLeft++;
    else
    scrollimg.parentNode.scrollLeft=0
    }function window.onload() {
    simg1.innerHTML=simg.innerHTML
    timerID = setInterval('newsScroll()',50) 
    }function stopScroll(bStop)
    {
      if (timerID != null && bStop)
    clearInterval(timerID);
      else
    timerID = setInterval('newsScroll()',50) 
    }
    </SCRIPT>
      

  2.   

    这样应该是可以的:
    <marquee direction="left" scrollamount="3" onMouseOver="this.stop()" onMouseOut="this.start()">
                <img src="images/scroll/first.gif" width="133" height="100" alt="杨树"><img src="images/scroll/1.gif" alt="枣树" width="133" height="100"><img src="images/scroll/2.gif" alt="雪松" width="133" height="100"><img src="images/scroll/3.gif" alt="树挂" width="133" height="100"><img src="images/scroll/4.gif" alt="龙山雪景" width="133" height="100"><img src="images/scroll/5.gif" alt="瑞雪红豆" width="133" height="100"> 
                </marquee>你还可以这样,希望对你有帮助:
    <marquee direction="left" id="imgstr" scrollamount="3" onMouseOver="imgstr.stop()" onMouseOut="imgstr.start()">
                <img src="images/scroll/first.gif" width="133" height="100" alt="杨树"><img src="images/scroll/1.gif" alt="枣树" width="133" height="100"><img src="images/scroll/2.gif" alt="雪松" width="133" height="100"><img src="images/scroll/3.gif" alt="树挂" width="133" height="100"><img src="images/scroll/4.gif" alt="龙山雪景" width="133" height="100"><img src="images/scroll/5.gif" alt="瑞雪红豆" width="133" height="100"> 
                </marquee>思归DX的方法应该没有问题的