我对基础轨道滑块有疑问:
图像不会自动消失。
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;">
最佳答案
问题是您将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
关于javascript - Foundation Orbit Slider不会自动消失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35240574/