You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The total execution time of the rotate function is the same as the time of the fadein fadeout functions. This can't work.
To change: the time should be divided by 2 for fade in and fade out functions.
The text was updated successfully, but these errors were encountered:
Fixed this by taking into account the tip by @kahsky.
Just replace the fade section of the code with the code below.
That fixed the issue for the fade transition.
case 'fade':
el.stop().fadeOut(settings.speed / 2, function() {
index = $.inArray(el.text(), array)
if((index + 1) == array.length) index = -1
el.text(array[index + 1]).stop().fadeIn(settings.speed / 2);
});
break;
Time!
The total execution time of the rotate function is the same as the time of the fadein fadeout functions. This can't work.
To change: the time should be divided by 2 for fade in and fade out functions.
The text was updated successfully, but these errors were encountered: