nicinabox / superslides

A fullscreen, hardware accelerated slider for jQuery.
http://archive.nicinabox.com/superslides
MIT License
1.51k stars 443 forks source link

Probleme with animated delay and first slide (animation : 'slide') #340

Open roro6969 opened 8 years ago

roro6969 commented 8 years ago

Hello,

If someone can help me, When i set a animation_speed the first slide (image) is not display before animation speed intervale. ex : if i set animation_speed : 4000 , the first image is showing after 4000. So anyone can help me to show imediatly the first slide and after set the animation_speed ?

Please...

$(function() {
  $('#slides').superslides({
    hashchange: false,
    play: 3000,
    animation_speed: 3000,
    nav: false

  });

  $('#slides').on('mouseenter', function() {
    $(this).superslides('stop');
    console.log('Stopped')
  });
  $('#slides').on('mouseleave', function() {
    $(this).superslides('start');
    console.log('Started')
  });
});