将计数器添加到jquery幻灯片中

时间:2013-11-12 17:15:39

标签: javascript jquery css3 slideshow counter

我正在使用我使用Javascript为我的网站构建的幻灯片。 我想加一个柜台。

1 of 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/

非常感谢你的帮助!

5 个答案:

答案 0 :(得分:2)

写下这个:

var count = $('.image_news').length; //length gives total length of elements
$("#total").text(count);

if ($current.is($slides.last())) {
    $("#current").text("1");//first slide
    $current.hide();
    $slides.first().show();
}
// else, hide current slide and show the next one
else {
    $("#current").text($current.next().index()+1); 
    //index() returns index, add 1 because it starts from 0
    $current.hide().next().show();
}

Fiddle here.

答案 1 :(得分:1)

只需添加一个计数器并更改html即可。这是Fiddle

var counter = 1;
$("#counter").html("image "+counter+"/3");
$slides.click(function(){
    // stores the currently-visible slide
    var $current = $(this);    
    if( $current.is($slides.last()) ) {
        $current.hide();
        $slides.first().show();
        counter = 1;
        $("#counter").html("image "+counter+"/3");
    } 
    // else, hide current slide and show the next one
    else {
        counter++;
        $current.hide().next().show(); 
        $("#counter").html("image "+counter+"/3");
    }
});

答案 2 :(得分:1)

非常感谢。 我将使用第一个选项@Hiral。我在我的网站上有另一张幻灯片,当我尝试其他选项时,它的工作效果不佳......但是非常感谢大家!

我有另外一件事需要解决。当我在我的页面上有2或3张幻灯片时,它不起作用... 我在管理页面中使用了转发器自定义字段,因此我无法提前知道我需要多少幻灯片... 有谁知道我怎么解决它? 这是一个jsfiddle:http://jsfiddle.net/XRpeA/13/

<div id="slideframe">
    <img class="image_news" src="http://s1.lemde.fr/image/2007/07/09/534x0/933544_5_aa6d_polynesie-bora-bora_0608bcead896ce3f59fc0e2fb3cc7435.jpg" />
    <img class="image_news" src="http://production.slashmedias.com/main_images/images/000/005/357/IMAGE-PENSEE-HD-1_original_original_large.jpg?1372235419" />
    <img class="image_news" src="http://images.telerama.fr/medias/2013/03/media_94814/une-image-un-film-l-auberge-de-dracula-1931,M106823.jpg" />
</div>
<br>
    <div id="counter">image <span id="current">1</span> / <span id="total"></span></div>

 <br><br>

<div id="slideframe">
<img class="image_news" src="http://s1.lemde.fr/image/2007/07/09/534x0/933544_5_aa6d_polynesie-bora-bora_0608bcead896ce3f59fc0e2fb3cc7435.jpg" />
<img class="image_news" src="http://production.slashmedias.com/main_images/images/000/005/357/IMAGE-PENSEE-HD-1_original_original_large.jpg?1372235419" />
<img class="image_news" src="http://images.telerama.fr/medias/2013/03/media_94814/une-image-un-film-l-auberge-de-dracula-1931,M106823.jpg" />
</div>
<br>
<div id="counter">image <span id="current">1</span> / <span id="total"></span></div>

非常感谢

答案 3 :(得分:0)

为每个图像添加一个id,例如:1,2,3并在您处于该图像时显示该ID。

答案 4 :(得分:0)

另一个选择

    // stores the currently-visible slide
    var $current = $(this);
    $current.hide();
    if( $current.is($slides.last()) ) 
    {
        $current = $slides.first();
    } 
    // else, hide current slide and show the next one
    else 
    {
        $current = $current.next();
    }
    $current.show();
    $('#counter').text('image ' + ($slides.index($current) + 1) + ' / ' + $slides.length);

有多种选择可供选择