0

我正在建立一个使用 Backstretch 的网站(顺便说一句超级方便)。我已经看到了一些将特定元素推送到幻灯片的示例,如下所示:

$("#cheers").click(function(e) {
    e.preventDefault();
    $.backstretch('http://dl.dropbox.com/u/515046/www/cheers.jpg');
});

但是有没有人有创建后退/前进按钮的经验(无需指定 URL)?查看源代码 line 252,您会看到一个next功能,但我不确定如何使用它,通过标准点击绑定:

$("#cheers").click(function(e) {
    e.preventDefault();
    $.backstretch('http://dl.dropbox.com/u/515046/www/cheers.jpg');
});

认为这将作为一个微妙的 UI 添加有用。任何指针将不胜感激。谢谢!

4

1 回答 1

3

开始了!

$('#next').click(function(x) {
    x.preventDefault();
    $('body').data('backstretch').next();
});
$('#prev').click(function(x) {
    x.preventDefault();
    $('body').data('backstretch').prev();
});
于 2013-01-21T21:26:55.340 回答