Skip to content

Instantly share code, notes, and snippets.

@Michcioperz
Forked from anonymous/jsbin.gobay.css
Last active August 29, 2015 13:56
Show Gist options
  • Save Michcioperz/8945324 to your computer and use it in GitHub Desktop.
Save Michcioperz/8945324 to your computer and use it in GitHub Desktop.
V
$(document).ready(function(){
setInterval(function() {
$("#caret").toggle();
}, 600);
$("#typeMe").typewriter("So, here we are, today is February 14th, and you're talking to a robot. How is your love life?", {'onComplete':function(){}});
});
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>14th</title>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//github.com/darcyclarke/jQuery-TypeOut-Plugin/raw/master/jquery.typeout.min.js"></script>
</head>
<body>
<span id="typeMe"></span>
<span id="caret">|</span>
</body>
</html>
body {
background-color: black;
color: lime;
font-family: monospace;
}
.text {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment