在backstretch元素内更改图像

时间:2012-10-10 16:11:06

标签: javascript jquery jquery-backstretch

目前我正在尝试使用我的后伸来实现更改图像的功能。 Backstretch绑定到块级元素,如此,

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

我当时想要做的是能够点击一个链接获取href并添加一个新的backstretch图像然而现在发生的是一个新的backstretch实例,这是我的点击代码,

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

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

1 个答案:

答案 0 :(得分:0)

您只需在后台拉伸生成的div中替换图像源:

$('#backstretch img').attr('src','your_image_url');