我正在使用我用 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/
非常感谢你的帮助 !