使用什么jquery轮播插件

时间:2014-08-13 21:02:31

标签: jquery jquery-plugins wordpress-plugin

我在一个网站上工作。我找到了这个http://www.yogyogurt.co.uk/takehome jquery(用于显示产品)。我想知道是否有人知道这个插件或jquery它的名字是什么?

谢谢! (提前)

1 个答案:

答案 0 :(得分:0)

正如我在其页面中看到的,他们使用bootstrap carousel插件:

https://gist.github.com/barryvdh/6155151

您可以将其用作:

jQuery(function(){
        jQuery('#recipeCarousel.carousel').carousel({
          interval: false
        });
        jQuery("#recipeCarousel .carousel-indicators li:first").addClass("active");
        jQuery("#recipeCarousel .carousel-inner .item:first").addClass("active");

});