当前位置:首页 > 日记 > 正文

基于Marquee.js插件实现的跑马灯效果示例

基于Marquee.js插件实现的跑马灯效果示例

本文实例讲述了基于Marquee.js插件实现的跑马灯效果。分享给大家供大家参考,具体如下:

1、Marquee.js文件

/****************************************************************- Marquee.js- 参数:- ID:滚动对象(必须)- Direction:滚动方向("top": 0, "up": 0, "bottom": 1, "down": 1, "left": 2, "right": 3)- Step:步伐- Width:宽度- Height:高度- Timer:影响步伐滚动速度- DelayTime:延时时间- WaitTime:初始化时的等待时间- ScrollStep:卷页步伐*****************************************************************/function Marquee(obt) {  if (obt == null || obt == "") {    return;  }  this.ID = document.getElementById(obt.ID);  if (!this.ID) {    alert("初始化错误\r\n请检查标签id设置是否正确!");    this.id = -1;    return;  }  this.Direction = this.Width = this.Height = this.DelayTime = this.WaitTime = this.CTL = this.StartID = this.Stop = this.MouseOver = 0;  this.Step = 1;  this.Timer = 30;  this.DirectionArray = { "top": 0, "up": 0, "bottom": 1, "down": 1, "left": 2, "right": 3 };  if (typeof obt.Direction == "number" && obt.Direction) this.Direction = obt.Direction;  if (typeof obt.Direction == "string" && obt.Direction) this.Direction = this.DirectionArray[obt.Direction.toString().toLowerCase()];  if (typeof obt.Step == "number" && obt.Step) this.Step = obt.Step;  if (typeof obt.Width == "number" && obt.Width) this.Width = obt.Width;  if (typeof obt.Height == "number" && obt.Height) this.Height = obt.Height;  if (typeof obt.Timer == "number" && obt.Timer) this.Timer = obt.Timer;  if (typeof obt.DelayTime == "number" && obt.DelayTime) this.DelayTime = obt.DelayTime;  if (typeof obt.WaitTime == "number" && obt.WaitTime) this.WaitTime = obt.WaitTime;  if (typeof obt.ScrollStep == "number" && obt.ScrollStep) this.ScrollStep = obt.ScrollStep;  this.ID.style.overflow = this.ID.style.overflowX = this.ID.style.overflowY = "hidden";  this.ID.noWrap = true;  this.IsNotOpera = (navigator.userAgent.toLowerCase().indexOf("opera") == -1);  this.Start();}Marquee.prototype.Start = function() {  if (this.ID == -1) return;  if (this.Width == 0) this.Width = parseInt(this.ID.style.width);  if (this.Height == 0) this.Height = parseInt(this.ID.style.height);  if (this.Timer < 20) this.Timer = 20;  if (this.WaitTime < 800) this.WaitTime = 800;  this.HalfWidth = Math.round(this.Width / 2);  this.HalfHeight = Math.round(this.Height / 2);  this.BakStep = this.Step;  this.ID.style.width = this.Width + "px";  this.ID.style.height = this.Height + "px";  if (typeof this.ScrollStep != "number") this.ScrollStep = this.Direction > 1 ? this.Width : this.Height;  var templateLeft = "<table cellspacing='0' cellpadding='0' style='border-collapse:collapse;display:inline;'><tr><td noWrap=true style='white-space: nowrap;word-break:keep-all;'>MSCLASS_TEMP_HTML</td><td noWrap=true style='white-space: nowrap;word-break:keep-all;'>MSCLASS_TEMP_HTML</td></tr></table>";  var templateTop = "<table cellspacing='0' cellpadding='0' style='border-collapse:collapse;'><tr><td>MSCLASS_TEMP_HTML</td></tr><tr><td>MSCLASS_TEMP_HTML</td></tr></table>";  var msobj = this;  msobj.tempHTML = msobj.ID.innerHTML;  if (msobj.Direction <= 1) {    msobj.ID.innerHTML = templateTop.replace(/MSCLASS_TEMP_HTML/g, msobj.ID.innerHTML);  }  else {    if (msobj.ScrollStep == 0 && msobj.DelayTime == 0) {      msobj.ID.innerHTML += msobj.ID.innerHTML;    }    else {      msobj.ID.innerHTML = templateLeft.replace(/MSCLASS_TEMP_HTML/g, msobj.ID.innerHTML);    }  }  var timer = this.Timer;  var delaytime = this.DelayTime;  var waittime = this.WaitTime;  msobj.StartID = function() { msobj.Scroll() }  msobj.Continue = function() {    if (msobj.MouseOver == 1) {      setTimeout(msobj.Continue, delaytime);    }    else {      clearInterval(msobj.TimerID);      msobj.CTL = msobj.Stop = 0;      msobj.TimerID = setInterval(msobj.StartID, timer);    }  }  msobj.Pause = function() {    msobj.Stop = 1;    clearInterval(msobj.TimerID);    setTimeout(msobj.Continue, delaytime);  }  msobj.Begin = function() {    msobj.ClientScroll = msobj.Direction > 1 ? msobj.ID.scrollWidth / 2 : msobj.ID.scrollHeight / 2;    if ((msobj.Direction <= 1 && msobj.ClientScroll <= msobj.Height + msobj.Step) || (msobj.Direction > 1 && msobj.ClientScroll <= msobj.Width + msobj.Step)) {      msobj.ID.innerHTML = msobj.tempHTML;      delete (msobj.tempHTML);      return;    }    delete (msobj.tempHTML);    msobj.TimerID = setInterval(msobj.StartID, timer);    if (msobj.ScrollStep < 0) return;    msobj.ID.onmousemove = function(event) {      if (msobj.ScrollStep == 0 && msobj.Direction > 1) {        var event = event || window.event;        if (window.event) {          if (msobj.IsNotOpera) {            msobj.EventLeft = event.srcElement.id == msobj.ID.id ? event.offsetX - msobj.ID.scrollLeft : event.srcElement.offsetLeft - msobj.ID.scrollLeft + event.offsetX;          }          else {            msobj.ScrollStep = null;            return;          }        }        else {          msobj.EventLeft = event.layerX - msobj.ID.scrollLeft;        }        msobj.Direction = msobj.EventLeft > msobj.HalfWidth ? 3 : 2;        msobj.AbsCenter = Math.abs(msobj.HalfWidth - msobj.EventLeft);        msobj.Step = Math.round(msobj.AbsCenter * (msobj.BakStep * 2) / msobj.HalfWidth);      }    }    msobj.ID.onmouseover = function() {      if (msobj.ScrollStep == 0) return;      msobj.MouseOver = 1;      clearInterval(msobj.TimerID);    }    msobj.ID.onmouseout = function() {      if (msobj.ScrollStep == 0) {        if (msobj.Step == 0) msobj.Step = 1;        return;      }      msobj.MouseOver = 0;      if (msobj.Stop == 0) {        clearInterval(msobj.TimerID);        msobj.TimerID = setInterval(msobj.StartID, timer);      }    }  }  setTimeout(msobj.Begin, waittime);}Marquee.prototype.Scroll = function() {  switch (this.Direction) {    case 0:      this.CTL += this.Step;      if (this.CTL >= this.ScrollStep && this.DelayTime > 0) {        this.ID.scrollTop += this.ScrollStep + this.Step - this.CTL;        this.Pause();        return;      }      else {        if (this.ID.scrollTop >= this.ClientScroll) {          this.ID.scrollTop -= this.ClientScroll;        }        this.ID.scrollTop += this.Step;      }      break;    case 1:      this.CTL += this.Step;      if (this.CTL >= this.ScrollStep && this.DelayTime > 0) {        this.ID.scrollTop -= this.ScrollStep + this.Step - this.CTL;        this.Pause();        return;      }      else {        if (this.ID.scrollTop <= 0) {          this.ID.scrollTop += this.ClientScroll;        }        this.ID.scrollTop -= this.Step;      }      break;    case 2:      this.CTL += this.Step;      if (this.CTL >= this.ScrollStep && this.DelayTime > 0) {        this.ID.scrollLeft += this.ScrollStep + this.Step - this.CTL;        this.Pause();        return;      }      else {        if (this.ID.scrollLeft >= this.ClientScroll) {          this.ID.scrollLeft -= this.ClientScroll;        }        this.ID.scrollLeft += this.Step;      }      break;    case 3:      this.CTL += this.Step;      if (this.CTL >= this.ScrollStep && this.DelayTime > 0) {        this.ID.scrollLeft -= this.ScrollStep + this.Step - this.CTL;        this.Pause();        return;      }      else {        if (this.ID.scrollLeft <= 0) {          this.ID.scrollLeft += this.ClientScroll;        }        this.ID.scrollLeft -= this.Step;      }      break;  }}

2、脚本调用

window.onload = function() {  new Marquee({ ID: "scrollNews", Direction: "top", Step: 2, Width: 0, Height: 80, Timer: 50, DelayTime: 1000, WaitTime: 1000, ScrollStep: 80 });}

更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript切换特效与技巧总结》、《JavaScript动画特效与技巧汇总》、《JavaScript错误与调试技巧总结》、《JavaScript数据结构与算法技巧总结》及《JavaScript数学运算用法总结》

希望本文所述对大家JavaScript程序设计有所帮助。

相关文章

PS怎么使用烟灰墨滤镜处理?

PS怎么使用烟灰墨滤镜处理?

滤镜,烟灰,电脑软件,PS,ps中的滤镜效果可以制作不同的画面效果,今天我们就来看看烟灰墨滤镜的使用方法,需要的朋友请看下文介绍。软件名称:Adobe Photoshop 8.0 中文完整绿色破解版软件大小:150.1MB更新时间:2015-11-041、打开一个PS的软件,然后…

如何制作彩色半色调背景墙纸

如何制作彩色半色调背景墙纸

半色调,彩色,背景,电脑软件,利用ps制作彩色半色调背景墙纸效果,主要采用椭圆工具和滤镜功能。现在我们共享操作步骤和截图供您参考,希望能对您有所帮助。 软件名称:Adobe PS图象处理软件8全绿色中文版软件大小:150.1mb更新时间:2015-11-04 1、…

AI是如何绘制立体彩色3D球体的

AI是如何绘制立体彩色3D球体的

绘制,3D,球体,彩色,电脑软件,AI想画一个3D球,然后为球做一个漂亮的表面。你是怎么做的让我们来看看详细的教程。 软件名称:Adobe Illustrator(AI)CS5安装精简优化版(免注册版)软件大小:97.7mb更新时间:2014-05-16 1,按Shift键画一个圆圈,然后用一个…

如何在excel表格里加入公式

如何在excel表格里加入公式

公式,表格,如何在,电脑软件,excel,  使用Excel表格工具做表格,有时需要使用上加、减、乘、除等计算公式,那么如何在表格中添加这些公式呢?我们以一个简单的工资表为例,来说明这些公式。首先新建一个表格,按需要确定表格的模式。将表头设定好,…

PHP检测用户是否关闭浏览器的方法

PHP检测用户是否关闭浏览器的方法

检测,方法,用户,关闭浏览器,电脑软件,本文实例讲述了PHP检测用户是否关闭浏览器的方法。分享给大家供大家参考,具体如下:1、例子1echo str_repeat(" ",3000);ignore_user_abort(true); mylog('online');while (true) { /* * 1、程序…

php实现的中秋博饼游戏之绘制骰子

php实现的中秋博饼游戏之绘制骰子

绘制,骰子,示例,中秋,图案,本文实例讲述了php实现的中秋博饼游戏之绘制骰子图案功能。分享给大家供大家参考,具体如下:最近公司中秋博饼(在厦门),自己没事也想玩玩,所以就想动手写了一个纯php实现的中秋博饼游戏,既然要纯php实现,就要用php来生成图…

用excel做施工进度表的教程步骤图

用excel做施工进度表的教程步骤图

教程,步骤,图文教程,进度表,表格,  Excel是三大办公软件之一的一个软件,他经常用于数据的整理、分析、以及对比等。而有很多时候需要用到Excel里的施工进度表进行统计进度。下面是小编带来的关于如何用excel做施工进度表教程的内容,欢迎阅…

win7字体怎么安装到电脑

win7字体怎么安装到电脑

安装,字体,电脑软件,相信很多用户都会给自己的win7系统电脑进行个性化设置,比如系统主题设置、图标更换或添加个性化字体等等,这样就能给系统添加多一分色彩。但是新手用户不知道如何去给win7添加个性化字体,针对朋友提出的问题,下面一起来看看…

你可能不知道json.stringify()详细解

你可能不知道json.stringify()详细解

解释,你可,详细,电脑软件,stringify,前言 JSON已经逐渐取代XML是由世界各地的开发商广泛使用。本文是对部分json.stringify在Javascript中使用的细节进行深入的解释。首先,JSON,Javascript的简要回顾: 并非所有合法JSON都是有效的Javascript; JSON仅是文本格式; …

PS如何利用滤镜转素描效果

PS如何利用滤镜转素描效果

滤镜,素描,效果,电脑软件,PS,   本教程的效果制作过程其实只有一步,用照亮边缘滤镜快速把图片转为线条效果,后期只需要去色,反相再添加一些细节即可。PS利用滤镜转素描效果教程原图最终效果1、打开素材图片,把背景图层复制一层,执行…

360浏览器收藏夹不见了怎么设置?

360浏览器收藏夹不见了怎么设置?

浏览器,设置,收藏夹,不见了,电脑软件,360浏览器收藏夹消失了,应该怎么办?大家在使用360浏览器的过程中,可能会因操作不当导致收藏夹不显示,下边就为大家带来360浏览器收藏夹消失的解决办法!360浏览器显示/隐藏收藏夹办法下面两图为收藏夹显示…

PS滤镜使魔环特效

PS滤镜使魔环特效

滤镜,特效,电脑软件,PS,使魔环,在现实生活中,有许多特殊的效果需要我们在设计工作中表现出来。我们不能通过射击来实现它们。例如,世界的尽头,山洪和宇宙空间,我们需要使用特效合成技术,当然,这也是对设计师创造性想象力的一次大考验。我们将使用…