Effect of random words

1

I am looking for an information I am behind an effect whose name I do not know I am trying to search the internet but I do not know the name is very difficult and I do not have a reference so I will explain what is more or less would be this:

I own a word and from it others form an example that I saw was something like this there was the word and the letters were beginning to fall one by one and they were appearing new letters forming another word that probably and done with Jquery but I am searching and not meeting for not knowing the name of this effect do not know if and some API or something similar could help me.

    
asked by anonymous 13.07.2015 / 18:34

1 answer

3

Forming new text, you mean? Maybe you're talking about this . It's a jQuery plugin that transitions between sentences, just put height in the element that contains the text:

var list = ['Textualizer is a jQuery plug-in that allows you to transition through blurbs of text. Just like this...'
          , 'When transitioning to a new blurb, any character that is common to the next blurb is kept on the screen, and moved to its new position.'
          , 'Textualize: verb - to put into text, set down as concrete and unchanging.  Use Textualizer to transition through blurbs of text.'
          , 'Blurb: noun - a short summary or some words of praise accompanying a creative work.  A promotional description.'];

var txt = $('#txtlzr');

txt.textualizer(list, { duration: 3000 });
txt.textualizer('start');
#txtlzr {
  font-size: 2em;
  height: 300px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script><scriptsrc="https://rawgithub.com/krisk/textualizer/master/textualizer.min.js"></script>

<div id="txtlzr"></div>
    
14.07.2015 / 04:34