Get started with jquery-teletype-plugin CDN
(MIT OR GPL-2.0) licensed
JQuery TeleType: Plugin types text character by character.
Tags:- jquery
- teletype
Stable version
Copied!
How to start using jquery-teletype-plugin CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with jquery-teletype-plugin CDN - cdnhub.io</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
#message {
font-size: 2em;
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<div id="message">Loading...</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.cdnhub.io/jquery-teletype-plugin/0.1.6/jquery.teletype.min.js"></script>
<script>
$(document).ready(function() {
$('#message').teletype('Loading...', {
delay: 30,
backspaceSpeed: 50,
onComplete: function() {
$('#message').text('Welcome to the jQuery Teletype Plugin Example!');
}
});
});
</script>
</body>
</html>
Copied!
Copied!