Good day programmers, I am trying to implement a known library of text animation called textillate, documentation: link
Well, I do not know if the problem is of includes or I'll be having some syntax error but it's not so much science to make it work, the question is that I'm not -.-
Here I leave the html code clean, and as well as this I would have to use the default animation. But it does not work ..
Any help is appreciated!
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="textillate/assets/jquery.lettering.js"></script>
<script src="textillate/jquery.textillate.js"></script>
<link rel="stylesheet" href="textillate/assets/animate.css">
<script type="text/javascript">
$(function () {
$('.demo').textillate();
})
</script>
<body>
<!-- texto animado -->
<div class="demo">
<p>Gracias stackoverflow :D</p>
</div>
<!-- fin texto animado -->
</body>
</html>