本帖最后由 wangxy131 于 2012-09-08 01:19:16 编辑

解决方案 »

  1.   

    。。汗~~我贴的本来就是你自己的css值你的代码IE下是可以的。其他标准浏览器不行。错误是:.ScrCont{width:10000000px;}这个引发的总的说,就是相对应的样式没设置好
      

  2.   

    可能你的过渡性标准不对
    拿下面的替换掉你现在的
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">我测试你的代码的时候,在IE8下至少滚了它不下一百次了
      

  3.   

    这个是我网上找的源代码,运行没有问题
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>带左右箭头切换的自动滚动图片JS特效</title>
    <style type="text/css">
    <!--
    .rollBox{width:704px;overflow:hidden;padding:12px 0 5px 6px;margin:0 auto;}
    .rollBox .LeftBotton{height:52px;width:19px;background:url(button.gif) no-repeat 11px 0;overflow:hidden;float:left;display:inline;margin:25px 0 0 0;cursor:pointer;}
    .rollBox .RightBotton{height:52px;width:20px;background:url(button.gif) no-repeat -8px 0;overflow:hidden;float:left;display:inline;margin:25px 0 0 0;cursor:pointer;}
    .rollBox .Cont{width:530px;overflow:hidden;float:left;}
    .rollBox .ScrCont{width:10000000px;}
    .rollBox .Cont .pic{width:132px;float:left;text-align:center;}
    .rollBox .Cont .pic img{padding:4px;background:#fff;border:1px solid #ccc;display:block;margin:0 auto;}
    .rollBox .Cont .pic p{line-height:26px;color:#505050;}
    .rollBox .Cont a:link,.rollBox .Cont a:visited{color:#626466;text-decoration:none;}
    .rollBox .Cont a:hover{color:#f00;text-decoration:underline;}
    .rollBox #List1,.rollBox #List2{float:left;}
    -->
    </style>
    </head>
    <body>
    <div class="rollBox">
         <div class="LeftBotton" onmousedown="ISL_GoUp()" onmouseup="ISL_StopUp()" onmouseout="ISL_StopUp()"></div>
         <div class="Cont" id="ISL_Cont">
          <div class="ScrCont">
           <div id="List1">
           
            <!-- 图片列表 begin -->
             <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1327DT20080906220904.jpg" width="109" height="87" /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图一</a></p>
             </div>       
            
     <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1091DT20080906180505.jpg" width="109" height="87"  /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图二</a></p>
             </div>
             <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1322DT20080906204943.jpg" width="109" height="87" /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图三</a></p>
             </div>
             <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1323DT20080906204943.jpg" width="109" height="87" /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图四</a></p>
             </div>
             <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1324DT20080906205503.jpg" width="109" height="87" /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图五</a></p>
             </div>
     <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1327DT20080906220904.jpg" width="109" height="87" /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图六</a></p>
             </div>      
             <div class="pic">
              <a href="/" target="_blank"><img src="http://www.5icool.org/demo/2010/00391/images/U2716P6T64D51897F1325DT20080906205624.jpg" width="109" height="87" /></a>
              <p><a href="http://www.5icool.org/" target="_blank">图七</a></p>
             </div>
            <!-- 图片列表 end -->
            
           </div>
           <div id="List2"></div>
          </div>
         </div>
         <div class="RightBotton" onmousedown="ISL_GoDown()" onmouseup="ISL_StopDown()" onmouseout="ISL_StopDown()"></div>
        </div>
       </div><script language="javascript" type="text/javascript">
    <!--//--><![CDATA[//><!--
    //图片滚动列表 5icool.org
    var Speed = 1; //速度(毫秒)
    var Space = 5; //每次移动(px)
    var PageWidth = 528; //翻页宽度
    var fill = 0; //整体移位
    var MoveLock = false;
    var MoveTimeObj;
    var Comp = 0;
    var AutoPlayObj = null;
    GetObj("List2").innerHTML = GetObj("List1").innerHTML;
    GetObj('ISL_Cont').scrollLeft = fill;
    GetObj("ISL_Cont").onmouseover = function(){clearInterval(AutoPlayObj);}
    GetObj("ISL_Cont").onmouseout = function(){AutoPlay();}
    AutoPlay();
    function GetObj(objName){if(document.getElementById){return eval('document.getElementById("'+objName+'")')}else{return eval('document.all.'+objName)}}
    function AutoPlay(){ //自动滚动
     clearInterval(AutoPlayObj);
     AutoPlayObj = setInterval('ISL_GoDown();ISL_StopDown();',3000); //间隔时间
    }
    function ISL_GoUp(){ //上翻开始
     if(MoveLock) return;
     clearInterval(AutoPlayObj);
     MoveLock = true;
     MoveTimeObj = setInterval('ISL_ScrUp();',Speed);
    }
    function ISL_StopUp(){ //上翻停止
     clearInterval(MoveTimeObj);
     if(GetObj('ISL_Cont').scrollLeft % PageWidth - fill != 0){
      Comp = fill - (GetObj('ISL_Cont').scrollLeft % PageWidth);
      CompScr();
     }else{
      MoveLock = false;
     }
     AutoPlay();
    }
    function ISL_ScrUp(){ //上翻动作
     if(GetObj('ISL_Cont').scrollLeft <= 0){GetObj('ISL_Cont').scrollLeft = GetObj('ISL_Cont').scrollLeft + GetObj('List1').offsetWidth}
     GetObj('ISL_Cont').scrollLeft -= Space ;
    }
    function ISL_GoDown(){ //下翻
     clearInterval(MoveTimeObj);
     if(MoveLock) return;
     clearInterval(AutoPlayObj);
     MoveLock = true;
     ISL_ScrDown();
     MoveTimeObj = setInterval('ISL_ScrDown()',Speed);
    }
    function ISL_StopDown(){ //下翻停止
     clearInterval(MoveTimeObj);
     if(GetObj('ISL_Cont').scrollLeft % PageWidth - fill != 0 ){
      Comp = PageWidth - GetObj('ISL_Cont').scrollLeft % PageWidth + fill;
      CompScr();
     }else{
      MoveLock = false;
     }
     AutoPlay();
    }
    function ISL_ScrDown(){ //下翻动作
     if(GetObj('ISL_Cont').scrollLeft >= GetObj('List1').scrollWidth){GetObj('ISL_Cont').scrollLeft = GetObj('ISL_Cont').scrollLeft - GetObj('List1').scrollWidth;}
     GetObj('ISL_Cont').scrollLeft += Space ;
    }
    function CompScr(){
     var num;
     if(Comp == 0){MoveLock = false;return;}
     if(Comp < 0){ //上翻
      if(Comp < -Space){
       Comp += Space;
       num = Space;
      }else{
       num = -Comp;
       Comp = 0;
      }
      GetObj('ISL_Cont').scrollLeft -= num;
      setTimeout('CompScr()',Speed);
     }else{ //下翻
      if(Comp > Space){
       Comp -= Space;
       num = Space;
      }else{
       num = Comp;
       Comp = 0;
      }
      GetObj('ISL_Cont').scrollLeft += num;
      setTimeout('CompScr()',Speed);
     }
    }
    //--><!]]>
    </script>
        <br><br>
    <p align="center"><a href="http://www.5icool.org/a/201005/444.html" target="_blank"><strong>带左右箭头切换的自动滚动图片JS特效</strong></a>  <a href="http://www.5icool.org/a/201005/444.html" target="_blank">[源码下载][使用帮助]</a></p><p align="center" style="font-size:12px;">代码整理:<a href="http://www.5icool.org/" target="_blank">酷站代码</a>,转载请注明出处。 本代码仅限于学习交流,请勿用于商业用途! </p></body>
    </html>
      

  4.   

           <div id="List1">
           
            <!-- 图片列表 begin -->
             <div class="pic" style="background-color:#999;width:109px;height:87px;">1</div>
            <div class="pic" style="background-color:#888;width:109px;height:87px;">2</div>
            <div class="pic" style="background-color:#777;width:109px;height:87px;">3</div>
            <!-- 图片列表 end -->
           </div>
    下面两个的宽度设置保持一致
    .rollBox .Cont{width:356px;overflow:hidden;float:left;}
    var PageWidth = 356; //翻页宽度
      

  5.   

    你改了人家的css,又偏偏不一个一个的对着改你自己的css修正如下:
    #RBottom_Main{width:704px;overflow:hidden;padding:12px 0 5px 6px;margin:0 auto;}
     .BMLeftArr1{height:52px;width:19px;background:url(button.gif) no-repeat 11px 0;overflow:hidden;float:left;display:inline;margin:25px 0 0 0;cursor:pointer;}
     .BMRightArr1{height:52px;width:20px;background:url(button.gif) no-repeat -8px 0;overflow:hidden;float:left;display:inline;margin:25px 0 0 0;cursor:pointer;}
     .BMISL_Cont{width:327px;overflow:hidden;float:left;}
     .ScrCont{width:10000000px;}
     .BMISL_Cont .pic{width:132px;float:left;text-align:center;}
     .BMISL_Cont .pic img{padding:4px;background:#fff;border:1px solid #ccc;display:block;margin:0 auto;}
     .BMISL_Cont .pic p{line-height:26px;color:#505050;}
     .BMISL_Cont a:link,.rollBox .Cont a:visited{color:#626466;text-decoration:none;}
     .BMISL_Cont a:hover{color:#f00;text-decoration:underline;}
     #List1,.rollBox #List2{float:left;}注意上面的BMISL_Cont中设置的宽度与下面js中PageWidth的宽度一致,都是等于:你的图片列表总数*单个图片的宽度
      

  6.   

    上面的:#List1,.rollBox #List2{float:left;}
    应该是:#List1,#List2{float:left;}
    少删了个.rollBox