jquery - Can't get Textillate Plugin to work properly -
using textillate plugin, i've trying recreate simple demo... however, i'm not sure why i'm unable "out" part of effect working. want block of text fade in left , fade out right. suck , nothing try seem work. if has used plugin, maybe can point me in right direction. thanks!
note: when add effect "out" or "in", plugin doesn't work @ all.
<div class="tlt"> <ul class="texts"> <li>hello world!</li> <li>i hate you</li> </ul> </div> $('.tlt').textillate({ in: { shuffle: false, sync: true }, out: { effect: 'fadeoutrightbig', shuffle: false, sync: true } });
effect names case sensitive correspond particular class defined in animate.css.
change fadeoutrightbig fadeoutrightbig.
$('.tlt').textillate({ in: { shuffle: false, sync: true }, out: { effect: 'fadeoutrightbig', shuffle: false, sync: true }, loop: true });
Comments
Post a Comment