0

我正在尝试将“选定”类添加到“url 哈希按钮”。

查看原始演示:http ://www.owlcarousel.owlgraphic.com/demos/urlhashnav.html

我希望它<a class="button secondary url" href="#zero">zero</a><a class="button secondary url selected" href="#zero">zero</a>在单击它时更改为,或者在它上面自动播放项目,或者在它上面拖动/滑动项目。

我尝试使用一个按钮进行测试,但它不起作用:

HTML:

 <div id="owl-appt" class="owl-carousel">
        <div class="item one" data-hash="one"><img src="img/gallery/home/appt1/1.jpg" alt=""></div>
        <div class="item two" data-hash="two"><img src="img/gallery/home/appt1/2.jpg" alt=""></div>
        <div class="item three" data-hash="three"><img src="img/gallery/home/appt1/3.jpg" alt=""></div>
</div>


      <a class="url one" href="#one"><img src="img/gallery/home/appt1/s1.jpg" /></a>
      <a class="url two" href="#two"><img src="img/gallery/home/appt1/s2.jpg" /></a>
      <a class="url three" href="#three"><img src="img/gallery/home/appt1/s3.jpg" /></a>

JS:

$("#owl-appt").owlCarousel(
          {
            items : 1,
            autoplay:false,           

            animateOut: 'fadeOut',
            loop:false,
            responsive: true,
            callbacks: true,
            URLhashListener:true,
            startPosition: '#one',

          });
if($("#owl-appt .item.one").parent().is(".active")){
  $("a.url.one").addClass("selected");
}else{
  $("a.url.one").removeClass("selected");
};
4

1 回答 1

-2

我认为如果#owl-appt .item - 处于活动状态,您需要比较 data-hash = "#one" 和 href = "#one" 的内容,以及您是否被分配到“选定”链接。对不起,我不是程序员,只是HTML coder,但我对这个问题太感兴趣了。

于 2015-04-27T10:12:00.280 回答