带有多个幻灯片的Angular-JS Carousel

时间:2014-10-07 15:34:18

标签: javascript jquery angularjs twitter-bootstrap carousel

我有一个旋转木马如下:

<div>
    <carousel id="myC" interval="3000" >            
       <slide ng-repeat="order in orders">
          <img ng-src="whatever.jpg" style="margin:auto;">
                <div class="carousel-caption">
                  <h4>Order {{$index}}</h4>
                  <p>{{order.title}}</p>
                </div>
       </slide> 
</div>

这很好用。但我正在寻找以下行为:
1.一次显示多张幻灯片(例如5张) 2.而不是img,我想显示DIV。我们的想法是在矩形DIV中显示订单信息,它们可以向左或向右滑动(如旋转木马)

或者其他想法做同样的事情?感谢。

1 个答案:

答案 0 :(得分:0)

我不知道你以前是否看过这个: Possible to show two slides in the carousel at a time?

希望这会有所帮助。