javascript - Foundtion's Orbit Slider fades not automatically -
i have problem foundation's orbit slider:
the images fades not automatically.
what i'm doing wrong?
<ul class="example-orbit orbit-slides-container" data-orbit data-options="timer_speed:4000;animation:fade;animation_speed:3000;timer: false" style="height: 546px;">
the problem have timer
option set false
. disable timer, stopping transition effect. remove option or set 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>
Comments
Post a Comment