We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Is it possible to make the following work?
strings:['I don\'t want just words.<br/>If that\'s all you have for me, you\'d better go.<br/>F. SCOTT FITZGERALD'],
When I try the above, <br/>s can literally be seen being typed on the page and then once the typing finishes, they go away.
<br/>
Is it possible to prevent all instances of <br/> from being typed, yet parsed in the HTML?
i.e., simulate the following sequence: animate the typing of a sentence, hit return, another sentence, hit return etc.
The text was updated successfully, but these errors were encountered:
Almost managed with
<h1><span id="ityped1"></span><br/><span id="ityped2"></span><br/><span id="ityped3"></span></h1>
and
<script> ityped.init('#ityped1', { strings:["I don't want just words."], typeSpeed: 110, // 55 is the default onFinished: function(){ document.querySelector('.ityped-cursor').style.visibility = 'hidden'; ityped.init('#ityped2', { strings:["If that's all you have for me, you'd better go."], typeSpeed: 110, // 55 is the default onFinished: function(){ document.querySelector('.ityped-cursor').style.visibility = 'hidden'; ityped.init('#ityped3', { strings:["F. SCOTT FITZGERALD"], typeSpeed: 110, // 55 is the default onFinished: function(){ document.querySelector('.ityped-cursor').style.visibility = 'hidden' } }); } }); } }); </script>
The problem is that blinking cursor does not go away for 2nd and 3rd lines after the text has been typed.
Sorry, something went wrong.
Hi, sorry for long response! I will try implement this!
No branches or pull requests
Hello,
Is it possible to make the following work?
strings:['I don\'t want just words.<br/>If that\'s all you have for me, you\'d better go.<br/>F. SCOTT FITZGERALD'],
When I try the above,
<br/>
s can literally be seen being typed on the page and then once the typing finishes, they go away.Is it possible to prevent all instances of
<br/>
from being typed, yet parsed in the HTML?i.e., simulate the following sequence: animate the typing of a sentence, hit return, another sentence, hit return etc.
The text was updated successfully, but these errors were encountered: