I will forward you to my old website design which used it.
myWebsiteImplementsThis
It makes use of jTypeWriter.js, blink.js, and jquery.
In the source you will the code.
You would want to take a look at function start()
and that will start the login design. I actually put it on hiatus, because there are actually some minor issues IRL i am working on, but you can easily see a working example at least :)
code:
$(function(){
start();
});
function start(){
$("#start").show();
setTimeout(ssh,1000);
}
function ssh(){
$("#ssh").show().jTypeWriter({duration:2.5});
setTimeout(pass,3000);
}
function pass(){
$("#pass").show();
setTimeout(...,2500);
}
/* etc etc */
Markup:
<pre id="start" style="display:none;">localhost$ <span id="ssh" style="display:none;">ssh fallenreaper@www.fallerneaper.com</span></pre>