Only the unminified JavaScript file is availabel right now. This option requires little to no setup.
jQuery Spinner Text file_downloadNext you just have to make sure you link the files properly in your webpage. Generally it is wise to import javascript files at the end of the body to reduce page load time. Follow the example below on how to import jQuery Spinner Text into your webpage.
One last thing to note is that you have to import jQuery before importing jquery-spinner-text.js!
<!DOCTYPE html>
<html>
<head>
<!--Import your header content -->
</head>
<body>
<!-- HTML element into which spinner text to be loader -->
<div id="spinner-text-container"></div>
<!--Import jQuery before jquery-spinner-text.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/jquery-spinner-text.js"></script>
</body>
</html>
Now call the spinner text initializer function (start_spinwriter) and your live text is ready.
$(document).ready(function() {
$("#spinner-text-container").start_spinwriter();
});
All of the options below are available to customize Spinner Text.