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 に答える