私は次の簡単なスライダーを持っています:
<div class="slideshow">
<img src="[the source]/some.jpg" style="display:none" />
<img src="[the source]/other.jpg" style="display:block" />
</div>
私が欲しいのは、スライドショーの変更をリアルタイムで追跡することです。画像にが含まれている場合はdisplay:block
、画像名を取得しますsome
。other
この例では。画像名がsome
、の場合、ボタンhref
とid
属性にいくつかの値other
を追加します。画像名が、の場合、ボタン(リンク)href
とid
属性に他の値を追加します。
以下のことを試しましたが、それは役に立ちません。リアルタイムではありません。スライドは5秒間隔で変更されます。この変更間隔は、リンクボタンhref
とid
値にも適用する必要があります。
jQuery(".slideshow img").each(function(i,val){
if ($('.slideshow img').is(':visible')) {
var name = $(".slideshow img").attr('src').split('/');
name = name[name.length-1].split('.')[0];
if ( name == "oferta" ) {
$("a.offers").attr("href", "index.php?p=575");
$("a.offers").attr("id", "of_details");
console.log(name);
} else {
$("a.offers").attr("href", "index.php?p=572");
$("a.offers").attr("id", "of_valentine ");
}
}
});
残念ながら、私のスライダーはアクティブなスライド画像にクラスを適用せず、表示属性を切り替えるだけです。
何か案は?
前もって感謝します!