-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
195 lines (183 loc) · 7.89 KB
/
index.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Ace Responsive Menu</title>
<!--Responsiveness-->
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<!--FontAwesome-->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<!--[if IE 7]>
<link rel="stylesheet" href="font-awesome/css/font-awesome-ie7.min.css">
<![endif]-->
<!--CSS Style-->
<link href="css/demo.css" rel="stylesheet" type="text/css" />
<link href="css/ace-responsive-menu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="demo">
<h1>Ace Responsive Menu</h1>
<p>Ace Responsive menu is a lightweight jQuery plugin to create responsive multi-level navigation menus with multi device support.
</p><p>Ace responsive menu comes with 3 variants like horizontal, vertical and accordion menu. It gives complete responsive menu solution for any kind of websites or admin templates. The plugin has clean and well commented valid code, easy to Integrate and modify.
<br /><br />
</p>
<!-- Ace Responsive Menu -->
<nav>
<!-- Menu Toggle btn-->
<div class="menu-toggle">
<h3>Menu</h3>
<button type="button" id="menu-btn">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Responsive Menu Structure-->
<!--Note: declare the Menu style in the data-menu-style="horizontal" (options: horizontal, vertical, accordion) -->
<ul id="respMenu" class="ace-responsive-menu" data-menu-style="horizontal">
<li>
<a href="javascript:;">
<i class="fa fa-home" aria-hidden="true"></i>
<span class="title">Home</span>
</a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-cube" aria-hidden="true"></i>
<span class="title">About Us</span>
</a>
<!-- Level Two-->
<ul>
<li>
<a href="#">Sub Item One</a>
</li>
<li>
<a href="#">Sub Item Two</a>
</li>
<li>
<a href="#">Sub Item Three</a>
</li>
<li>
<a href="#">Sub Item Four</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-crop" aria-hidden="true"></i>
<span class="title">4 Level Menu</span>
</a>
<!-- Level Two-->
<ul>
<li>
<a href="javascript:;">
<i class="fa fa-graduation-cap" aria-hidden="true"></i>
Sub Item One
</a>
</li>
<li>
<a href="#">
<i class="fa fa-database" aria-hidden="true"></i>
Sub Item Two
</a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-amazon" aria-hidden="true"></i>
Sub Item Three
</a>
<!-- Level Three-->
<ul>
<li><a href="#"><i class="fa fa-user" aria-hidden="true"></i>Sub Item Link 1</a></li>
<li>
<a href="javascript:;">
<i class="fa fa-diamond" aria-hidden="true"></i>Sub Item Link 2</a>
<!-- Level Four-->
<ul>
<li><a href="#"><i class="fa fa-trash" aria-hidden="true"></i>Sub Item Link 1</a></li>
<li><a href="#"><i class="fa fa-dashcube" aria-hidden="true"></i>Sub Item Link 2</a></li>
<li><a href="#"><i class="fa fa-dropbox" aria-hidden="true"></i>Sub Item Link 3</a></li>
</ul>
</li>
<li><a href="#"><i class="fa fa-user" aria-hidden="true"></i>Sub Item Link 3</a></li>
</ul>
</li>
<li>
<a href="#">
<i class="fa fa-database" aria-hidden="true"></i>
Sub Item Four
</a>
</li>
</ul>
</li>
<li>
<a class="" href="javascript:;">
<i class="fa fa-graduation-cap" aria-hidden="true"></i>
<span class="title">Services</span>
</a>
<ul>
<li>
<a href="#">Sub Item One
</a>
</li>
<li>
<a href="javascript:;">Sub Item Two
</a>
<ul>
<li><a href="#">Sub Item Link 1</a></li>
<li><a href="#">Sub Item Link 2</a></li>
<li><a href="#">Sub Item Link 3</a></li>
</ul>
</li>
<li>
<a href="javascript:;">Sub Item Three
</a>
<ul>
<li><a href="#">Sub Item Link 1</a></li>
<li><a href="#">Sub Item Link 1</a></li>
<li><a href="#">Sub Item Link 1</a></li>
</ul>
</li>
<li>
<a href="#">Sub Item Four
</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-heart" aria-hidden="true"></i>
<span class="title">Products</span>
</a>
</li>
<li class="last ">
<a href="javascript:;">
<i class="fa fa-envelope" aria-hidden="true"></i>
<span class="title">Contact Us</span>
</a>
</li>
</ul>
</nav>
<!-- End of Responsive Menu -->
<div class="options">
<h3>Menu Styles/Variants </h3>
<a href="horizontal-menu.html">Horizontal Menu</a>
<a href="vertical-menu.html">Vertical Menu</a>
<a href="accordion-menu.html">Accordion Menu</a>
</div>
</div>
<!--Scripts-->
<script src="js/jquery-1.10.1.min.js" type="text/javascript"></script>
<script src="js/ace-responsive-menu.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#respMenu").aceResponsiveMenu({
resizeWidth: '768', // Set the same in Media query
animationSpeed: 'fast', //slow, medium, fast
accoridonExpAll: false //Expands all the accordion menu on click
});
});
</script>
</body>
</html>