0

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

这是脚本:

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

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

4

1 回答 1

0

您需要在初始化 vTicker-function 代码后添加:

$("#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);
  });
});
于 2013-01-21T09:10:49.523 回答