OwlCarousel2在拖动时更新URL哈希导航

时间:2015-01-29 13:26:11

标签: javascript php owl-carousel owl-carousel-2

我目前正在使用OwlCarousel2来满足我的旋转木马需求。我在OwlCarousel1上选择了OwlCarousel2,因为它有一个URL哈希导航:http://www.owlcarousel.owlgraphic.com/demos/urlhashnav.html

<div id="contestant-carousel">
    <div id="poll-images" class="owl-carousel">
        <?php
            for($counter = 1; $counter <= 14; $counter++) {
                echo "<div class='item' data-hash='$counter'><a href='" . HTTP_SERVER . "vote.php?contestant_id=$counter'><img src='/images/contestants_mobile/$counter.png' alt='$counter'></a></div>";
            }
        ?>
    </div>
</div>

上面是我用来生成轮播的PHP代码。我有十四张图像,所以我的代码循环遍历所有十四个图像,并为每个图像添加一个data-hash对象(用于锚定导航需求)。

以下是我的Javascript代码:

$(document).ready(function() {
    $("#poll-images").owlCarousel({
        items: 1,
        loop:false,
        center:true,
        margin:10,
        lazyLoad:false,
        URLhashListener:true,
        onDragged:callback,
        autoplayHoverPause:true,
        startPosition: 'URLHash'
    });

    function callback(event) {
        window.location.hash = event.item.index;
        console.log(event.item.index);
    }
});

现在,如果用户手动添加其网址中的哈希值(即someurl.com/voting.php#4),则上述轮播将完美运行,这将导航至第四张图像。

但是,我想要做的是,如果网址导航到someurl.com/voting.php,当他们滚动浏览每个图片时,我的网址会相应地更新其锚点。为什么?因为如果我的用户点击图片(包含href),并且他们转到上一页,他们可以导航回他们正在查看的图片,而不是转到第一张图片的默认行为

根据OwlCarousel2 API(实际上与OwlCarousel1完全不同),要获取当前项目,您可以执行this

function callback(event) {
    // Provided by the core
    var element   = event.target;         // DOM element, in this example .owl-carousel
    var name      = event.type;           // Name of the event, in this example dragged
    var namespace = event.namespace;      // Namespace of the event, in this example owl.carousel
    var items     = event.item.count;     // Number of items
    var item      = event.item.index;     // Position of the current item
    // Provided by the navigation plugin
    var pages     = event.page.count;     // Number of pages
    var page      = event.page.index;     // Position of the current page
    var size      = event.page.size;      // Number of items per page }

具体来说,使用event.item.index。我的代码正是这样做的!但我无法检索当前的索引!我的错误是:Chrome控制台下的Uncaught TypeError: Cannot read property 'item' of undefined

非常感谢JS大师的任何帮助!

我尝试遍历StackOverflow以及OwlCarousel2 API以查看我是否可以这样做,但是,没有运气。

我还检查了这个帖子:append /remove anchor name from current url without refresh

1 个答案:

答案 0 :(得分:1)

在这里找到了解决方案!

    // jQuery method on
    owl.on('changed.owl.carousel', function(property){
        var current = property.item.index;
        window.location.hash = current + 1;
    });

OwlCarousel2家伙需要更新他的API = /

在此处找到:Owl Carousel 2 - Get src of current slide