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></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, idScrollLeft, idScrollRight, options) {
    var oScroll = this, oScroller = $(idScroller), oScrollMid = $(idScrollMid);
    
    this.widthScroller = oScroller.offsetWidth;
    this.widthList = oScrollMid.offsetWidth;
    
    if(this.widthList <= this.widthScroller) return;
    
    oScroller.style.overflow = "hidden";
    oScrollMid.appendChild(oScrollMid.cloneNode(true));
    
    this.oScroller = oScroller;
    this.scroll = true;
    
    this.SetOptions(options);
    
    this.side = 1;//1是左 -1是右
    switch (this.options.Side) {
        case "right" :
            this.side = -1;
            break;
        case "left" :
        default :
            this.side = 1;
    }
    
    addEventHandler(oScrollMid , "mouseover", function() { oScroll.scroll = false; });
    addEventHandler(oScrollMid , "mouseout", function() { oScroll.scroll = true; });
    
    if(idScrollLeft) { addEventHandler($(idScrollLeft), "click", function() { oScroll.side = 1; }); }
    if(idScrollRight) { addEventHandler($(idScrollRight), "click", function() { oScroll.side = -1; }); }
    
    this.Scroll();
  },
  //设置默认属性
  SetOptions: function(options) {
    this.options = {//默认值
      Step:            1,//每次变化的px量
      Time:            50,//速度
      Side:            "left"//默认滚动方向
    };
    Object.extend(this.options, options || {});
  },
  //滚动
  Scroll: function() {
    if (this.scroll) {
        var iScroll = this.oScroller.scrollLeft, iWidth = this.widthList;
        if(this.side > 0){
            if(iScroll >= (iWidth * 2 - this.widthScroller)){ iScroll -= iWidth; }
        } else {
            if(iScroll <= 0){ iScroll += iWidth; }
        }
        this.oScroller.scrollLeft = iScroll + this.options.Step * this.side;//注意scrollLeft超过1400会自动变回1400 注意长度
    }
    var oScroll = this; window.setTimeout(function(){ oScroll.Scroll(); }, this.options.Time);
  }
};

window.onload = function(){
    new Scroller("idScroller","idScrollMid", "idScrollLeft", "idScrollRight");
}
</script>
<div id="idScroller" style="width:290px; overflow:hidden">
<div style="width:2000px">
    <div id="idScrollMid" style="float:left;">
      <div style="float:left"> <img src="1.jpg" width="150px" height="150px;"/> </div>
      <div style="float:left"> <img src="1.jpg" width="150px" height="150px;"/> </div>
    </div>
</div>
</div>
<input id="idScrollLeft" type="button" value="向左" />
<input id="idScrollRight" type="button" value="向右" />
</body>
</html>

本文转自博客园cloudgamer的博客,原文链接:Javascript无缝左右滚动,如需转载请自行联系原博主。

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

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"><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&

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

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

javascript实现无缝上下滚动特效_javascript技巧

本文实例讲解了javascript实现无缝上下滚动的代码,分享给大家供大家参考,具体内容如下 js实现上下无缝滚动的原理是这样的: 1.首先给容器设定高度或宽度,然后overflow:hidden: 2.容器高度设定后,内容超出则被隐藏. 3.改变容器的scrollTop(上下滚动)属性的值,让内容上下移动一个节点的位置(滚动的原理): 4.到滚动的高度scrollTop大于或等于要滚动节点的高度时,设置scrollTop=0,并把把子节点树中的第一个移动到最后,重新开始滚动,无间断循环滚动效果

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 无缝八向滚动(兼容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

jQuery动画效果实现图片无缝连续滚动_jquery

本文实例介绍了jQuery动画效果实现图片无缝连续滚动的详细代码,分享给大家供大家参考,具体内容如下 效果图如下: 一.HTML代码 <body> <div id="container"> <ul id="content"> <li><a href="#"><img src="images/0.png"/></a></li> <

js实现无缝循环滚动_javascript技巧

本文实例为大家分享了js无缝循环滚动实现代码,供大家参考,具体内容如下 1.图片格式:260*400. 2.使用循环定时器轻松实现 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>无缝滚动</title> </head> <style type="text/css"&

jQuery插件实现文字无缝向上滚动效果代码_jquery

本文实例讲述了jQuery插件实现文字无缝向上滚动效果代码.分享给大家供大家参考,具体如下: 此插件旨在实现目前较为流行的无缝向上滚动特效,当鼠标移动到文字上时,向上滚动会停止,当鼠标离开时,向上滚动继续.整体代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&