jQuery vTicker停止自动播放

时间:2013-01-16 08:14:13

标签: php javascript jquery html ajax

我正在使用jQuery vTicker滚动我的新闻项目。

这是剧本:

$(document).ready(function() {
  $('.tx_newsitems').vTicker({
    speed: 500,
    pause: 3000,
    animation: 'none',
    mousePause: true,
    height: 0,
    direction: 'up',
  });
});

实际问题是我需要在此插件中停止自动播放。可能吗? 是这样的代码autoplay:false,吗?

1 个答案:

答案 0 :(得分:0)

您需要在初始化后添加vTicker功能代码:

$("#id of stop/start - button").toggle(function(){ 
  $('.tx_newsitems').vTicker('pause', true);
},function(){ 
  $('.tx_newsitems').vTicker('pause', false);
});

像这样:

$(document).ready(function() {
  $('.tx_newsitems').vTicker({
    speed: 500,
    pause: 3000,
    animation: 'none',
    mousePause: true,
    height: 0,
    direction: 'up',
  });

  $("#stop_start_button").toggle(function(){ 
     $('.tx_newsitems').vTicker('pause', true);
  },function(){ 
     $('.tx_newsitems').vTicker('pause', false);
  });
});