letterfx icon indicating copy to clipboard operation
letterfx copied to clipboard

How to make the text initially hidden?

Open newjie opened this issue 8 years ago • 1 comments

I am trying to use letterFx for my slideshow text. It makes more sense if the text could appear with the animation, but I can't find the setting. It seems that I have to have the text show on the screen before I can make any FX.

newjie avatar Apr 11 '16 03:04 newjie

CSS

span#js-animated {
    visibility    : hidden;
}

JS

$(window).bind('load', function() {
    $('#js-animated').letterfx().css('visibility', 'visible');
});

danielferrazramos avatar Sep 28 '16 01:09 danielferrazramos