Skip to content

Instantly share code, notes, and snippets.

Created February 11, 2014 22:12
Show Gist options
  • Save anonymous/8945320 to your computer and use it in GitHub Desktop.
Save anonymous/8945320 to your computer and use it in GitHub Desktop.
body {
background-color: black;
color: lime;
font-family: monospace;
}
.text {
display: none;
}
<!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>
<div class="text">So, here we are, today is February 14th, and you're talking to a robot. How is your love life?</div>
</body>
</html>
$(document).ready(function(){
$('.text').show();
$('.text').typeOut();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment