-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (17 loc) · 812 Bytes
/
index.html
File metadata and controls
19 lines (17 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="css/wordswitch.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2>This is a <span class="wordswitch">heading, text, header, switcher</span></h2>
<p>this is a <span class="wordswitch">paragraph, p tag, description, summary, detailed data, configuration, info</span></p>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/wordswitch.jquery.js"></script>
<script>
$( ".wordswitch" ).wordswitch({delay:2}); // Apply wordswitch animation
</script>
</html>