-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooterMenu.html
39 lines (33 loc) · 1.03 KB
/
footerMenu.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" media="screen" href="css/footerMenu.css" />
</head>
<body>
<h1>
Simple and easy jQuery plugin.
<br>
Nice slide up toggle footer menu when scroll down.
</h1>
<h2>Scroll Down to see the Footer Menu in action.</h2>
<div class="arrow-down"></div>
<div id="footerMenu">
<div class="content-wrap">
<ul class="navigation">
<li><a href="#menu1">Menu 1</a></li>
<li><a href="#menu2">Menu 2</a></li>
<li><a href="#menu3">Menu 3</a></li>
<li><a href="#menu4">Menu 4</a></li>
<li><a href="#menu5">Menu 5</a></li>
<li><a href="#menu6">Menu 6</a></li>
</ul>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.2.min.js" integrity="sha256-36cp2Co+/62rEAAYHLmRCPIych47CvdM+uTBJwSzWjI=" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/jquery.footerMenu.js"></script>
<script>
$("body").footerMenu();
</script>
</body>
</html>