fluidtype-jquery/example/index.html

29 lines
682 B
HTML
Raw Normal View History

2018-06-11 20:57:39 +00:00
<!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>