fluidtype-jquery/example/index.html

29 lines
682 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Demo</title>
<link rel="stylesheet" type="text/css" href="css/app.css"/>
</head>
<body>
<h1>FluidType jQuery Plugin</h1>
<div id="text">
Hello!<br/>
My name is Glenn,<br/>
Im <span id="dynamic"></span>
</div>
<input type="button" value="Pause" />
<!-- external libraries -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" ></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/2.0.5/velocity.js"></script>
<script src="js/fluidtype-jquery.js"></script>
<!-- page specific settings -->
<script src="js/app.js"></script>
</body>
</html>