-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
76 lines (72 loc) · 2.29 KB
/
about.html
File metadata and controls
76 lines (72 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ALXS aniMulti</title>
<link rel="stylesheet" href="css/foundation.min.css" />
<link rel="stylesheet" href="css/base.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<!-- Navigation -->
<div id="nav">
<div id="brand">
ALXS aniMulti jQuery Plugin
</div>
<ul id="menu">
<li><a class="aniLink" href="/index.html">Home</a></li>
<li><a class="aniLink" href="/about.html">About</a></li>
<li><a class="aniLink" href="/contact.html">Contact</a></li>
</ul>
</div>
<!-- Content -->
<div id="aniMulti">
<div id="content">
<p>This is my next content</p>
</div>
</div>
<!-- Footer -->
<div id="footer">
<div id="subBrand">
ALXS aniMulti jQuery Plugin
</div>
</div>
<!-- Scripts -->
<script src="js/jquery-2.1.3.js"></script>
<script src="js/jquery.animulti.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#aniMulti').aniMulti({
wrapper: "#content",
navID: "#home",
/* Top Bar */
topBar: "true",
topMenu: "true",
topID: "#nav",
topHeight: "2.8125rem",
topBg: "rgba(0,0,0,0.2)",
topBorder: "false",
topBorderStyle: "1px solid #565656",
topBrand: "true",
topBrandID: "#brand",
topBrandLocation: "left",
/* Bottom Bar */
bottomBar: "true",
bottomBg: "rgba(0,0,0,0.2)",
bottomID: "#footer",
bottomHeight: "2.8125rem",
bottomBorder: "true",
bottomBorderStyle: "1px solid #565656",
bottomBrand: "true",
bottomBrandID: "#subBrand",
bottomBrandLocation: "right"
});
});
</script>
</body>
</html>