Get started with lettering.js CDN
WTFPL licensed
Lettering.js is a lightweight library for creating custom, interactive animations with text.
Tags:- typography
Stable version
Copied!
How to start using lettering.js CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with lettering.js CDN - cdnhub.io</title>
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.cdnhub.io/lettering.js/0.7.0/jquery.lettering.min.js"></script>
</head>
<body>
<div id="lettering-example">
<h1 class="letters">Hello, <span class="animate">W</span>orld!</h1>
</div>
<script>
$(document).ready(function() {
$('.letters').lettering();
});
</script>
</body>
</html>
Copied!
Copied!