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

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

 81035  3  查看评论 (3)
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();
  })
});

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / UI滚动

jquery支持自定义的页面楼层滚动特效代码

一款单页常用的点击锚点滚动效果,可自定义点击的链接标签属性,以及偏移量、滚动时间等。
  UI滚动
 3189  0

jquery页面滚动到指定DIV元素触发函数插件

一款滚动页面显示到指定DIV元素时,自动触发函数事件,很实用!
  UI滚动
 9202  0

纯CSS实现的水平文本文字新闻列表滚动条特效

一个水平新闻滚动条动画效果。新闻滚动条显示从右向左滚动的新闻列表,鼠标悬停于列表标题文字上即可暂停滚动。
  UI滚动
 2320  0

jquery滚动页面根据位置自动改变DIV背景颜色特效代码

一款滚动判断可视窗口范围插件,自动改变DIV背景颜色及对应的文本文字。
  UI滚动
 7199  0

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

    铁头de科技0
    2024-01-16 12:45:51
    masker0
    2023-10-26 16:51:20
    kuliwa0
    2023-10-24 16:58:47
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论