我正在使用Codecanyon的插件Content Timeline。
$('.read_more').on('click', function() {
if ($(this).text() == 'Fechar') {
$(this).text('Saber Mais');
$.timeline('close', "06/08/2012"); // The id "06/08/2012" is only an example.
} else {
$(this).text('Fechar');
}
});
$('.t_close').remove();
我想调用此$.timeline('close', id);
来关闭已打开的元素,但它无效。我改变了标签,但结束动作没有完成。有人知道我怎么解决它吗?
答案 0 :(得分:1)
$('.timelineLight').timeline('close', $(this).attr('data-id'));
这很有效。
$('.timelineLight').timeline({
openTriggerClass : '.read_more',
startItem : '15/08/2012',
categories: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro']
});
$('.read_more').on('click', function() {
if ($(this).text() == 'Fechar') {
$(this).text('Saber Mais');
$('.timelineLight').timeline('close', $(this).attr('data-id'));
} else {
$(this).text('Fechar');
}
});
$('.t_close').remove();