0

我需要在幻灯片放映时重新加载图像,因为它是动画 gif 并且需要从头开始

我可以在当前类上使用 if 语句在单击时执行此操作,但这不是我需要的方式,因为我希望它在幻灯片进入后立即加载。到目前为止,我有以下内容

this.$slides.eq(this.current).addClass('da-slide-current');

var image = new Image();
image.src = "kick.gif";

$("div").click(function () {
    if ($(this).hasClass("da-slide-current")) {
        $(this)
        $('.da-slide-current > .da-img > img').attr('src', image.src);

    }
}); 
4

1 回答 1

0
var image = new Image();
image.src = "kick.gif";

this.$slides.eq(this.current)
    .addClass('da-slide-current')
    .find("> .da-img > img").attr('src', image.src);
于 2013-10-09T11:42:56.390 回答