<marquee><img src=1.gif><img src=2.gif><img src=3.gif></marquee>

解决方案 »

  1.   

    <marquee><img src=1.gif></marquee>
      

  2.   

    <marquee><img src="1.jpg"><img src="2.jpg"></marquee>
      

  3.   

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>连续向左滚动</title>
    <style type="text/css">
    <!--
    body {
    font-size: 9pt;
    color: #000000;
    }
    a {
        color: #0000FF;
    text-decoration: none;
    }
    a:hover {
    color: #FF0000;
    text-decoration: underline;
    }
    -->
    </style>
    </head><body><div id="marquees">
    <a href="#">链接一</a>
    <a href="#">链接二</a>
    <a href="#">链接三</a>
    <a href="#">链接四</a>
    </div><div id="templayer" style="position:absolute;left:0;top:0;visibility:hidden"></div>
    <script language="JavaScript">marqueesWidth=200;with(marquees){
    style.height=0;
    style.width=marqueesWidth;
    style.overflowX="hidden";
    style.overflowY="visible";
    noWrap=true;
    onmouseover=new Function("stopscroll=true");
    onmouseout=new Function("stopscroll=false");
    }
    preLeft=0; currentLeft=0; stopscroll=false;function init(){
    templayer.innerHTML="";
    while(templayer.offsetWidth<marqueesWidth){
    templayer.innerHTML+=marquees.innerHTML;
    }
    marquees.innerHTML+=templayer.innerHTML;
    setInterval("scrollLeft()",10);
    }init();function scrollLeft(){
    if(stopscroll==true) return;
    preLeft=marquees.scrollLeft;
    marquees.scrollLeft+=1;
    if(preLeft==marquees.scrollLeft){
      marquees.scrollLeft=templayer.offsetWidth-marqueesWidth+1;
    }
    }
    </script>
    </body>
    </html>
      

  4.   

    <marquee onmouseout=this.start() onmouseover=this.stop() scrollAmount=3>
    <img src="1.jpg"><img src="2.jpg"><img src="3.jpg">
    </marquee>
      

  5.   

    自己去看:
    http://www.38js.com/WebAngel/Js/Js.asp?catid=18&ToPage=2
      

  6.   

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>连续向左滚动</title>
    <style type="text/css">
    <!--
    body {
    font-size: 9pt;
    color: #000000;
    }
    a {
        color: #0000FF;
    text-decoration: none;
    }
    a:hover {
    color: #FF0000;
    text-decoration: underline;
    }
    -->
    </style>
    </head><body><div id="marquees">
    <a href="#">链接一</a>
    <a href="#">链接二</a>
    <a href="#">链接三</a>
    <a href="#">链接四</a>
    </div><div id="templayer" style="position:absolute;left:0;top:0;visibility:hidden"></div>
    <script language="JavaScript">marqueesWidth=200;with(marquees){
    style.height=0;
    style.width=marqueesWidth;
    style.overflowX="hidden";
    style.overflowY="visible";
    noWrap=true;
    onmouseover=new Function("stopscroll=true");
    onmouseout=new Function("stopscroll=false");
    }
    preLeft=0; currentLeft=0; stopscroll=false;function init(){
    templayer.innerHTML="";
    while(templayer.offsetWidth<marqueesWidth){
    templayer.innerHTML+=marquees.innerHTML;
    }
    marquees.innerHTML+=templayer.innerHTML;
    setInterval("scrollLeft()",10);
    }init();function scrollLeft(){
    if(stopscroll==true) return;
    preLeft=marquees.scrollLeft;
    marquees.scrollLeft+=1;
    if(preLeft==marquees.scrollLeft){
      marquees.scrollLeft=templayer.offsetWidth-marqueesWidth+1;
    }
    }
    </script>
    </body>
    </html>
      

  7.   

    标题: 不间断图片滚动http://www.1000script.com/script/go.asp?id=299
    自己去看吧