Web サイト用に Javascript で作成したスライドショーを使用しています。カウンターを追加したい。
1/3...
スライド 1 / 合計スライド...
解決策を見つけることができません...
ここに私のコードがあります:
$(document).ready(function() {
// set display:none for all members of ".pic" class except the first
$('.image_news:gt(0)').hide();
// stores all matches for class="pic"
var $slides = $('.image_news');
$slides.click(function(){
// stores the currently-visible slide
var $current = $(this);
if( $current.is($slides.last()) ) {
$current.hide();
$slides.first().show();
}
// else, hide current slide and show the next one
else {
$current.hide().next().show();
}
});
});
例を含む fsfiddle リンク: http://jsfiddle.net/XRpeA/3/
助けてくれてありがとう!