建站知识

Welcome to Beijing RuiHeng TianLong Technology Co., Ltd.

网站建设中常用到图片左右滚动的效果不间断,怎样网页左右滚动效果不间断?

时间:  来源:网站建设公司  作者:网站制作公司  点击量:
瑞恒网络,北京网站建设,北京网站制作,高端网站建设品牌服务公司,网站建设,网站制作,等一站式综合服务,专业打造品牌形象网站,让您在众多竞争对手中脱颖而出,010-56290915

网站制作中,左右滚动效果是非常常见的,下面我们介绍一种网站中常用的滚动效果,本人认为还是非常好用的,可以控制滚动的速度和移动的宽带,请查看下列代码:
 

<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>
<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="图片地址.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="图片地址.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="图片地址.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="图片地址.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="图片地址.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="图片地址.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="图片地址.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>


怎么样,网站建设中的滚动效果你学会了吗?

 

本文TAG标签: 北京网站设计 北京网页制作 北京网站建设
返回关闭本页
上一篇:ASP时间差,ASP时间差怎么计算?ASP网站制作计算时间差    下一篇:北京网站建设-彩色tags标签,关键字代码,tag标签刷新一次变一次,标签云。
推荐阅读

Copyright © 2010-2021 北京瑞恒天龙科技有限公司  All Rights Reserved  |  北京网站建设知名服务商  |  北京网站制作 | 京ICP备11004170号-1   京公网安备110107000463号
地址:北京市海淀区永定路长银大厦B座  非工作时间:15810379666  服务热线:400-809-6709  版权所有 盗版必究!

在线咨询
关闭
电话咨询
网站制作电话
400-809-6709