-
-
Save Michcioperz/8945324 to your computer and use it in GitHub Desktop.
V
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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(){}}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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