我正在使用jQuery vTicker滚动我的新闻项目。
这是剧本:
$(document).ready(function() {
$('.tx_newsitems').vTicker({
speed: 500,
pause: 3000,
animation: 'none',
mousePause: true,
height: 0,
direction: 'up',
});
});
实际问题是我需要在此插件中停止自动播放。可能吗?
是这样的代码autoplay:false,
吗?
答案 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);
});
});