简体   繁体   中英

How do I display the current and total amount of slides - Featherlight.js

How do I display the current slide number and total slide count in my featherlight gallery?

<div class="thumbnail-gallery" >    
    <a class="gallery" href="#" data-featherlight="#1">
        Image 1
    </a>
    <div id="1" class="lightbox">
        <img src="image.jpg" />
    </div>   
    <a class="gallery" href="#" data-featherlight="#2">
        Image 2
    </a>
    <div id="2" class="lightbox">
        <img src="image2.jpg" />
    </div>  
    // I would like to display slide number and total slide count here
    <p>Image <span class="current-slide">#</span> of <span class="total-slides">#</span></p>
</div>

Featherlight Gallery类添加了slides方法,您可以将其用于您的目的。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM