1

目前我正在尝试实现用我的后伸改变图像的能力。Backstretch 像这样绑定到块级元素,

$("#background-image.slideshow").backstretch(backgroundImages, {fade: 750,duration: 4000});

然后我想要做的是能够点击一个链接获取href并添加一个新的回溯图像但是现在发生的是一个新的回溯实例被创建,这是我的点击代码,

$("#thumb-gallery a").click(function(e) {
// Prevent the click from actually following the href
e.preventDefault();
// Backstretch
$.backstretch( $(this).attr("href") );
});

我哪里错了?我想要做的就是更改#background-image.slideshow 中的后拉伸图像

4

1 回答 1

0

您可以只替换 backstretch 生成的 div 中的图像源:

$('#backstretch img').attr('src','your_image_url');
于 2013-04-15T15:26:19.453 回答