javascript - 如何在照片库中添加分页?

标签 javascript jquery html css pagination

我的 HTML 代码是这样的:

<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                 <h4 class="modal-title" id="myModalLabel">Modal title</h4>

            </div>
            <div class="modal-body">


            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
            </div>
        </div>
        <!-- /.modal-content -->
    </div>
    <!-- /.modal-dialog -->
</div>
<!-- /.modal -->

我的Javascript代码是这样的:

htmlData = '';
    htmlData = 'Photos<a href="#" id="hotel_photo" data-hotel-code="nases">(Click to View)</a><br><br>';
    htmlData += '<div class="imageHotel"></div>';

    $('#myModal').find('.modal-body').html(htmlData);

    $(".imageHotel").hide();
    $(document).on("click", "#hotel_photo", function(event){
        $(".imageHotel").toggle();
        event.preventDefault();
        htmlData += '<div id="gallery_hotel">';

            htmlData = '<img id="largeImage" src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_01_large.jpg" />';

        htmlData += '</div>';


        htmlData += '<div id="thumbs_hotel">';

            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_01_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_02_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_03_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_04_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_05_thumb.jpg" />';
             htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_01_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_02_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_03_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_04_thumb.jpg" />';
            htmlData += '<img src="http://www.workshop.rs/demo/gallery-in-4-lines/images/image_05_thumb.jpg" />';

        htmlData += '</div>';

        $('.imageHotel').html(htmlData);

        // bind the click event
        $('#thumbs_hotel').off().on('click', 'img', function () {
          console.log($(this).attr('src'));
          $('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
        });

    });

演示是这样的:https://jsfiddle.net/oscar11/10td0yww/5/

我想在我的照片库中添加分页。所以每页只显示 5 张图片。例如有10张图片,那么就有2页

有什么办法可以解决我的问题吗?

非常感谢

最佳答案

我为此使用了猫头鹰旋转木马。

$("#thumbs_hotel").owlCarousel({
    items: 5, // number of images to be moved
    dots: true
});

我通过添加以下代码阻止了猫头鹰轮播的滑动/触摸/拖动事件:

$(".item").on("touchstart mousedown", function(e) {
    // Prevent carousel swipe
    e.stopPropagation();
})

我还添加了用于导航点的 css。您可以根据需要更改它。

.owl-carousel .item {
    margin: 3px;
}
.owl-dot {
    display: inline-block;
}
.owl-dots span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}

请引用fiddle

关于javascript - 如何在照片库中添加分页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36685453/

相关文章:

javascript - 检查两个数字是否都是正数或都是负数

jquery - 将 iframe 内所有链接的目标更改为 "_parent"jquery

jquery - 未捕获的 ReferenceError : $ is not defined when jquery. js 在文档末尾

javascript - div 高度随着其他流体 div 高度的变化而变化

javascript - 从 getter 返回后执行一个操作

javascript - 而当我使用单值时,它会抛出错误。 Uncaught TypeError : health. 映射不是一个函数

javascript - 如何用javascript读取txt文件

jquery - Bootstrap glyphicons 在 IE11 的 Windows 10 中不显示

javascript - 同步 Breeze ExecuteQuery

javascript - 线条未绘制在 Canvas 上的正确位置