JavaScript 无缝上下(左右)滚动加定高(定宽)停顿效果

<!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>JavaScript 无缝上下(左右)滚动加定高(定宽)停顿效果(兼容ie/ff)</title>
</head>
<body>
<script type="text/javascript">
var $ = function (id) {
    return "string" == typeof id ? document.getElementById(id) : id;
};

var Class = {
  create: function() {
    return function() {
      this.initialize.apply(this, arguments);
    }
  }
}

Object.extend = function(destination, source) {
    for (var property in source) {
        destination[property] = source[property];
    }
    return destination;
}

function addEventHandler(oTarget, sEventType, fnHandler) {
    if (oTarget.addEventListener) {
        oTarget.addEventListener(sEventType, fnHandler, false);
    } else if (oTarget.attachEvent) {
        oTarget.attachEvent("on" + sEventType, fnHandler);
    } else {
        oTarget["on" + sEventType] = fnHandler;
    }
};


var Scroller = Class.create();
Scroller.prototype = {
  initialize: function(idScroller, idScrollMid, options) {
    var oScroll = this, oScroller = $(idScroller), oScrollMid = $(idScrollMid);
    
    this.SetOptions(options);
    this.Scroller = oScroller;    
    this.Speed = this.options.Speed;
    this.timer = null;
    this.Pause = 0;
    
    //用于上下滚动
    this.heightScroller = parseInt(oScroller.style.height) || oScroller.offsetHeight;
    this.heightList = oScrollMid.offsetHeight;
    
    //用于左右滚动
    this.widthScroller = parseInt(oScroller.style.width) || oScroller.offsetWidth;
    this.widthList = oScrollMid.offsetWidth;
    
    //js取不到css设置的height和width
    
    oScroller.style.overflow = "hidden";
    oScrollMid.appendChild(oScrollMid.cloneNode(true));
    
    //方向设置
    switch (this.options.Side.toLowerCase()) {
        case "right" :
            if(this.widthList <= this.widthScroller) return;
            this.Scroll = this.ScrollLeftRight;
            this.side = -1;
            break;
        case "left" :
            if(this.widthList <= this.widthScroller) return;
            this.Scroll = this.ScrollLeftRight;
            this.side = 1;
            break;
        case "down" :
            if(this.heightList <= this.heightScroller) return;
            this.Scroll = this.ScrollUpDown;
            this.side = -1;
            break;
        case "up" :
        default :
            if(this.heightList <= this.heightScroller) return;
            this.Scroll = this.ScrollUpDown;
            this.side = 1;
    }
    
    addEventHandler(oScroller, "mouseover", function() { oScroll.Stop(); });
    addEventHandler(oScroller, "mouseout", function() { oScroll.Start(); });
    
    this.Start();
  },
  //设置默认属性
  SetOptions: function(options) {
    this.options = {//默认值
      Step:            1,//每次变化的px量
      Speed:        20,//速度(越大越慢)
      Side:            "up",//滚动方向:"up"是上,"down"是下,"left"是左,"right"是右
      PauseHeight:    0,//隔多高停一次
      PauseWidth:    0,//隔多宽停一次
      PauseStep:    1000//停顿时间(PauseHeight或PauseWidth大于0该参数才有效)
    };
    Object.extend(this.options, options || {});
  },  
  //上下滚动
  ScrollUpDown: function() {
    this.Scroller.scrollTop = this.GetScroll(this.Scroller.scrollTop, this.heightScroller, this.heightList, this.options.PauseHeight);
    
    var oScroll = this;
    this.timer = window.setTimeout(function(){ oScroll.Scroll(); }, this.Speed);
  },
  //左右滚动
  ScrollLeftRight: function() {
    //document.getElementById("test").innerHTML+=iStep+",";
    //注意:scrollLeft超过1400会自动变回1400 注意长度
    this.Scroller.scrollLeft = this.GetScroll(this.Scroller.scrollLeft, this.widthScroller, this.widthList, this.options.PauseWidth);
    
    var oScroll = this;
    this.timer = window.setTimeout(function(){ oScroll.Scroll(); }, this.Speed);
  },
  //获取设置滚动数据
  GetScroll: function(iScroll, iScroller, iList, iPause) {
    var oScroll = this, iStep = this.options.Step * this.side;
    
    if(this.side > 0){
        if(iScroll >= (iList * 2 - iScroller)){ iScroll -= iList; }
    } else {
        if(iScroll <= 0){ iScroll += iList; }
    }
    
    this.Speed = this.options.Speed;
    if(iPause > 0){
        if(Math.abs(this.Pause) >= iPause){
            this.Speed = this.options.PauseStep; this.Pause = iStep = 0;
        } else {
            this.Pause += iStep;
        }
    }
    
    return (iScroll + iStep);
  },
  //开始
  Start: function() {
    this.Scroll();
  },
  //停止
  Stop: function() {
    clearTimeout(this.timer);
  }
};

window.onload = function(){
    new Scroller("idScroller", "idScrollMid",{ Side:"up", PauseHeight:25 });
    new Scroller("idScroller1", "idScrollMid1",{ Side:"right", PauseWidth:250, Speed:10 });
}
</script>
<style>
.Scroller *{margin:0px; padding:0px;}
.Scroller {line-height:25px;overflow:hidden; border:1px solid #000000;}

#idScrollMid ul{width:500px;}
#idScrollMid li{width:250px;float:left; overflow:hidden; list-style:none;}

#idScrollMid1 {float:left;}
#idScrollMid1 ul{width:250px;float:left;overflow:hidden;}
#idScrollMid1 li{list-style:none;}
</style>
<div id="idScroller" class="Scroller" style="width:500px; height:50px;">
  <div id="idScrollMid">
    <ul>
      <li><a href="http://shundebk.cn/">111111111111111111111</a></li>
      <li><a href="http://shundebk.cn/">211111111111111111111</a></li>
      <li><a href="http://shundebk.cn/">311111111111111111111</a></li>
      <li><a href="http://shundebk.cn/">411111111111111111111</a></li>
      <li><a href="http://shundebk.cn/">511111111111111111111</a></li>
      <li><a href="http://shundebk.cn/">611111111111111111111</a></li>
    </ul>
    <div style="clear:both;"></div>
  </div>
</div>
<br />
<br />
<br />
<div id="idScroller1" class="Scroller" style="width:500px; height:50px;">
  <div style="width:2000px">
    <div id="idScrollMid1">
      <ul>
        <li> <a href="http://shundebk.cn/">1111111111111111111111</a></li>
        <li> <a href="http://shundebk.cn/">2111111111111111111111</a></li>
      </ul>
      <ul>
        <li> <a href="http://shundebk.cn/">1211111111111111111111</a></li>
        <li> <a href="http://shundebk.cn/">2211111111111111111111</a></li>
      </ul>
      <ul>
        <li> <a href="http://shundebk.cn/">1311111111111111111111</a></li>
        <li> <a href="http://shundebk.cn/">2311111111111111111111</a></li>
      </ul>
    </div>
  </div>
</div>
<div id="test"></div>
</body>
</html>


根据上一篇做的改进

效果

本文转自博客园cloudgamer的博客,原文链接:JavaScript 无缝上下(左右)滚动加定高(定宽)停顿效果,如需转载请自行联系原博主。

时间: 2024-10-27 19:26:31

JavaScript 无缝上下(左右)滚动加定高(定宽)停顿效果的相关文章

JavaScript 无缝上下左右滚动加定高定宽停顿效果

根据无缝滚动和八向滚动修改而来,特点是能同一程序中分别向四个方向移动.对滚动框内的样式设置有些要求.效果: 代码: <!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&

JavaScript 无缝八向滚动(兼容ie/ff)

<!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-Typ

JavaScript 无缝上下左右滚动加定高定宽停顿效果(兼容ie/ff)_javascript技巧

顺德于1993年被批准为广东省综合改革试点. 2006年顺德成为首个GDP超过1000亿的县级行政单位. 2000至2003年顺德均在中国百强县排名中位居榜首. 2005年顺德实现国内生产总值856.11亿元.

兼容ie和火狐的js无缝八向滚动特效代码

<!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-Typ

JavaScript 无缝上下滚动加定高停顿效果

<!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-Typ

解析javascript瀑布流原理实现图片滚动加载_javascript技巧

先科普下瀑布流吧 瀑布流,又称瀑布流式布局.是比较流行的一种网站页面布局,视觉表现为参差不齐的多栏布局,随着页面滚动条向下滚动,这种布局还会不断加载数据块并附加至当前尾部.最早采用此布局的网站是Pinterest,逐渐在国内流行开来.国内大多数清新站基本为这类风格,像美丽说.淘宝网都有使用. 这是我实现的一个效果,就是怎么滚动都加载不玩.就跟瀑布一样流啊流! 这里的实现方式我们只说Js实现方法 实现原理: 对容器中已有数据块元素进行第一次计算1 容器总宽度 2 列宽度  3 最小列数 ,得到列数

JavaScript仿淘宝页面图片滚动加载及刷新回顶部的方法解析_javascript技巧

淘宝图片处理讨论淘宝网页面很大,但是打开速度很快.其对图片处理是运用了滚动加载,就是滚动轴滚到哪里,图片在哪里加载.但是你想查看他的源代码,那要费九牛二虎之力吧,因为他们代码压缩合并做的很好!因为图片是滚动加载的,初始化的时候图片不加载,那么当你在页面底部刷新页面的时候,底部的页面通常不会加载出来,淘宝网的做法貌似是(因为我没有看他们的源代码,只是凭操作),刷新让页面回到顶部. 模仿淘宝,做滚动图片加载 这里想到了三种方法:1.javascript懒加载之可视区域加载 <!DOCTYPE htm

Javascript无缝左右滚动

<!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-Typ

移动设备的HTML页面中图片实现滚动加载

如今移动互联网风靡全球,移动页面的元素也是丰富多彩,一个移动页面的图片超过10张已经是再正常不过的事情了.但是相对,很多移动用户还停留在2G,3G这样的网络中.那么这样带宽的用户,在浏览这样的页面时,要把页面加载完毕,可能就需要10s,20s甚至更多,严重影响用户的体验.针对这样的问题,让页面中的图片滚动加载(图片出现在显示器屏幕上时再加载图片)显得非常重要!这样也可以有效地节省我们服务器的带宽和解决请求大并发的问题. 1.效果图.     这是加载过程中的图片菊花显示