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

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

 12.2K  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基于bootstrap的文字滚动动画特效代码

一款自定义文字滚动动画插件,此插件共包含4个html页面,共4种不同的文字滚动效果。
  UI滚动
 6702  0

纯CSS创建的一堆具有滚动效果的卡片布局特效

一款鼠标滚动页面触发的卡片堆叠特效,卡片倾斜垂直放置,当向下滚动页面时会触发卡片堆叠效果,向上滚动页面时卡片分离动画。
  UI滚动
 41296  0

jquery滚动页面触发文本文字动画特效代码

一款拉动页面滚动条触发文字动画插件,不管是向上或向下滚动,都触发文字偏移、延迟动画特效。
  UI滚动
 7661  0

纯CSS实现的垂直滚动轮播特效代码

一款DIV滚动轮播效果,犹如滚轮般轮流显示,平滑过渡的旋转木马动画,带淡入淡出特效。
  UI滚动
 3871  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
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论