Foundtion的Orbit Slider不会自动消失

时间:2016-02-06 11:41:11

标签: javascript jquery html css zurb-foundation

我对基础的轨道滑块有问题:

图像不会自动消失。

http://www.pruefag.ch/de/

我做错了什么?

<ul class="example-orbit orbit-slides-container" data-orbit data-options="timer_speed:4000;animation:fade;animation_speed:3000;timer: false" style="height: 546px;">

1 个答案:

答案 0 :(得分:1)

问题是您将timer选项设置为false。这将禁用计时器,从而停止转换效果。只需删除该选项或将其设置为true

<ul class="example-orbit orbit-slides-container" data-orbit data-options="timer_speed:4000;animation:fade;animation_speed:3000;" style="height: 546px;">
  //Your content
</ul>

Fiddle example