我需要在幻灯片放映时重新加载图像,因为它是动画 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);
}
});