基于jQuery实现一个marquee无缝滚动的插件


Posted in Javascript onMarch 09, 2017

基于jQuery,实现一个marquee无缝滚动的插件,已经发布到 git.oschina.net,演示稍后更新(更新到 http://git.oschina.net/mqycn/jQueryMarquee )。

代码如下:

/**
 * 类库名称:jQuery.marquee
 * 实现功能:基于 jquery 实现的 marquee 无缝滚动插件
 * 作者主页:http://www.miaoqiyuan.cn/
 * 联系邮箱:mqycn@126.com
 * 使用说明:http://www.miaoqiyuan.cn/p/jquery-marquee
 * 最新版本:http://git.oschina.net/mqycn/jQueryMarquee
*/
jQuery.fn.extend({
  marquee : function(opt, callback){
    opt = opt || {};
    opt.speed = opt.speed || 30;
    opt.direction = opt.direction || 'left';
    opt.pixels = opt.pixels || 2;
    switch( opt.direction ){
      case "left":
      case "right":
        opt.weight = "width";
        opt.margin = "margin-left";
        opt.tpl = '<table><tr><td>[TABLE]</td><td>[TABLE]</td></tr></table>';
        break;
      case "top":
      case "bottom":
        opt.weight = "height";
        opt.margin = "margin-top";
        opt.tpl = '<table><tr><td>[TABLE]</td></tr></tr><td>[TABLE]</td></tr></table>';
        break;
      default:
        throw Error("[jQuery.marquee.js] Options.direction Error!");
    }
    switch( opt.direction ){
      case "left":
      case "top":
        opt.addon = -1;
        break;
      case "right":
      case "bottom":
        opt.addon = 1;
        break;
      default:
        throw Error("[jQuery.marquee.js] Options.direction Error!");
    }
    callback = typeof callback == "function" ? callback : function(){};
    //设置宽度
    $(this).each(function(){
      if( this.control ){
        clearInterval(this.control);
      } else {
        //如果第一次执行,初始化代码
        $(this)
          .data(opt.weight, opt.weight == 'width' ? $(this).find("table").width() : $(this).find("table").height())
          .width($(this).data(opt.weight) * 2)
          .html(opt.tpl.replace(/\[TABLE\]/ig, $(this).html()))
          .mouseover(function(){
            $(this).data("pause", true);
          }).mouseout(function(){
            $(this).data("pause", false);
          });
      }
      this.control = setInterval((function(){
        if( $(this).data("pause") ){
          return;
        }
        var _margin = parseInt($(this).css(opt.margin)) + opt.addon * opt.pixels;
        if( opt.addon == -1 && _margin + $(this).data(opt.weight) < 0 ){
          _margin = 0;
        }else if( opt.addon == 1, _margin > 0 ){
          console.log(_margin < 0,$(this).data(opt.weight));
          _margin = -1 * $(this).data(opt.weight);
        }
        $(this).css(opt.margin, _margin + "px");
        callback.bind(this)();
      }).bind(this), opt.speed);
    });
    return $(this);
  }
});

如果在IE9以下使用,还需要在之前增加如下代码:

/**
 * IE8插件(解决 function 不支持 bind 的问题),非原创
*/
if (!Function.prototype.bind) {
  Function.prototype.bind = function(oThis) {
    if (typeof this !== "function") {
      throw new TypeError("[jQuery.marquee.ie8] Caller is not a function");
    }
    var aArgs = Array.prototype.slice.call(arguments, 1),
      fToBind = this,
      fNOP = function() {},
      fBound = function() {
        return fToBind.apply(this instanceof fNOP && oThis ? this : oThis, aArgs.concat(Array.prototype.slice.call(arguments)));
      };
    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();
    return fBound;
  };
}

一共有三个可选参数,一个回调方法。

direction,移动方向:支持 左:left 右:right 上:top 下:bottom;

pixels,每次移动的像素数

speed,两次移动之前的间隔时间数(毫秒)

调用方法如下:

$("scroll-a").marquee();
$("scroll-b").marquee({direction:'top'});
$("scroll-c").marquee({direction:'top',pixels:2,speed:30});
$("scroll-d").marquee({direction:"top",pixels:2,speed:30}, function(){
  console.log("执行了一次");
});

以上所述是小编给大家介绍的基于jQuery实现一个marquee无缝滚动的插件,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Javascript 相关文章推荐
window.open不被拦截的实现代码
Aug 22 Javascript
jquery中$.post()方法的简单实例
Feb 04 Javascript
封装了一个支持匿名函数的Javascript事件监听器
Jun 05 Javascript
js网页滚动条滚动事件实例分析
May 05 Javascript
JS实现可拖曳、可关闭的弹窗效果
Sep 26 Javascript
jQuery计算文本框字数及限制文本框字数的方法
Mar 01 Javascript
实例剖析AngularJS框架中数据的双向绑定运用
Mar 04 Javascript
详解升级react-router 4 踩坑指南
Aug 14 Javascript
通过一个简单的例子学会vuex与模块化
Nov 22 Javascript
微信小程序实现动态改变view标签宽度和高度的方法【附demo源码下载】
Dec 05 Javascript
JS处理一些简单计算题
Feb 24 Javascript
vue瀑布流组件实现上拉加载更多
Mar 10 Javascript
jQuery插件HighCharts绘制2D圆环图效果示例【附demo源码下载】
Mar 09 #Javascript
js实现显示手机号码效果
Mar 09 #Javascript
jQuery插件HighCharts绘制2D半圆环图效果示例【附demo源码下载】
Mar 09 #Javascript
javascript 秒表计时器实现代码
Mar 09 #Javascript
react实现pure render时bind(this)隐患需注意!
Mar 09 #Javascript
使用bootstrap-paginator.js 分页来进行ajax 异步分页请求示例
Mar 09 #Javascript
jQuery插件HighCharts绘制2D金字塔图效果示例【附demo源码下载】
Mar 09 #Javascript
You might like
php中cookie的作用域
2008/03/27 PHP
php随机输出名人名言的代码
2012/10/07 PHP
微信支付开发维权通知实例
2016/07/12 PHP
php+mysql+jquery实现日历签到功能
2017/02/27 PHP
php文件操作之文件写入字符串、数组的方法分析
2019/04/15 PHP
jquery实现多级下拉菜单的实例代码
2013/10/02 Javascript
jQuery的图片滑块焦点图插件整理推荐
2014/12/07 Javascript
JavaScript DSL 流畅接口(使用链式调用)实例
2015/03/15 Javascript
javascript背景时钟实现方法
2015/06/18 Javascript
JS实现密码框根据焦点的获取与失去控制文字的消失与显示效果
2015/11/26 Javascript
AngularJS  $on、$emit和$broadcast的使用
2016/09/05 Javascript
探索Vue.js component内容实现
2016/11/03 Javascript
解决nodejs中使用http请求返回值为html时乱码的问题
2017/02/18 NodeJs
javascript作用域链与执行环境详解
2017/03/25 Javascript
浅谈AngularJS中使用$resource(已更新)
2017/09/14 Javascript
详解从零搭建 vue2 vue-router2 webpack3 工程
2017/11/22 Javascript
微信小程序全局变量的设置、使用、修改过程解析
2019/09/24 Javascript
mpvue实现微信小程序快递单号查询代码
2020/04/03 Javascript
详谈Object.defineProperty 及实现数据双向绑定
2020/07/18 Javascript
JavaScript实现京东快递单号查询
2020/11/30 Javascript
[01:23]一分钟告诉你 DOTA2为什么叫信仰2
2014/06/20 DOTA
Java多线程编程中ThreadLocal类的用法及深入
2016/06/21 Python
python开发简易版在线音乐播放器
2017/03/03 Python
python入门前的第一课 python怎样入门
2018/03/06 Python
django 捕获异常和日志系统过程详解
2019/07/18 Python
Python3将ipa包中的文件按大小排序
2020/04/17 Python
Linux如何压缩可执行文件
2013/10/21 面试题
日期和时间问题
2015/01/04 面试题
自我鉴定的范文
2013/10/03 职场文书
效能监察建议书
2014/05/19 职场文书
关于建议书的格式范文
2014/05/20 职场文书
商务专员岗位职责范本
2014/06/29 职场文书
基层工作经验证明样本
2014/11/16 职场文书
巾帼标兵事迹材料
2014/12/26 职场文书
读完《骆驼祥子》的观后感!
2019/07/05 职场文书
Java线程的6种状态与生命周期
2022/05/11 Java/Android