jquery基于Marquee.js使文本文字图片自由滚动插件

所属分类: 网页特效-动画效果    2023-10-07 03:52:52

jquery基于Marquee.js使文本文字图片自由滚动插件 ie兼容6

jquery基于Marquee.js使文本文字图片自由滚动插件(共5个文件)

    • jquery.marquee.min.js
    • update.json
    • index.html
    • info.ini
    • jquery.marquee.js

使用方法

$(function(){
  var $mwo = $('.marquee-with-options');
  $('.marquee').marquee();
  $('.marquee-with-options').marquee({
    //speed in milliseconds of the marquee
    speed: 5000,
    //gap in pixels between the tickers
    gap: 50,
    //gap in pixels between the tickers
    delayBeforeStart: 0,
    //'left' or 'right'
    direction: 'left',
    //true or false - should the marquee be duplicated to show an effect of continues flow
    duplicated: true,
    //on hover pause the marquee - using jQuery plugin https://github.com/tobia/Pause
    pauseOnHover: true
  });

  //Direction upward
  $('.marquee-vert').marquee({
    direction: 'up',
    speed: 1500
  });

  //pause and resume links
  $('.pause').click(function(e){
    e.preventDefault();
    $mwo.trigger('pause');
  });
  $('.resume').click(function(e){
    e.preventDefault();
    $mwo.trigger('resume');
  });
  //toggle
  $('.toggle').hover(function(e){
    $mwo.trigger('pause');
  },function(){
    $mwo.trigger('resume');
  })
  .click(function(e){
    e.preventDefault();
  })
});

相关资源 / 动画效果

jquery幻灯片动画效果内容动态演示插件

一款jQuery驱动的演示插件,类似于幻灯片展示内容一样,每个模块内容都是循序渐进推进显示。
  动画效果
 87  

jquery矩阵式俄罗斯方块动画加载字符插件

一款超有创意的动感文字动画插件,正方形方块动画的方式呈现文字效果。
  动画效果
 102  

css3柱形条音符跳动动画特效代码

一款由多根柱形条跳动特效,像极了音乐跳动效果。
  动画效果
 54  

纯css3绚丽圆点背景动画特效

一款css3编写的多彩气泡背景动画,canvas画布实现,非常的nice~ 喜欢的拿走!
  动画效果
 50  

评论数(2) 回复有机会获得K币 用户协议

    masker0
    2023-10-26 16:51:20
    下载了可以完美使用
    回复
    kuliwa0
    2023-10-24 16:58:47
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论