-
Notifications
You must be signed in to change notification settings - Fork 13
/
navbar.php
69 lines (51 loc) · 1.45 KB
/
navbar.php
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="navbar_style.css">
<script src="jquery-3.2.1.min.js"></script>
</head>
<body>
<div class="nav-wrapper">
<div class="topnav" id="theTopNav">
<a href="home.php">HOME</a>
<a href="news.php">NEWS</a>
<a href="contact.php">CONTACT</a>
<a href="javascript:void(0);" class="icon" onclick="respFunc()">☰</a>
</div>
</div>
<script>
function respFunc() {
var x = document.getElementById("theTopNav");
console.log(x);
if (x.className === "topnav") {
x.className += " responsive";
return 0;
}
if (x.className === "topnav navbar-fixed") {
x.className += " responsive";
return 0;
}
if (x.className === "topnav responsive") {
x.className = "topnav";
return 0;
}
if (x.className === "topnav navbar-fixed responsive" || x.className === "topnav responsive navbar-fixed") {
x.className = "topnav navbar-fixed";
return 0;
}
}
// Function below is jquery-3 function used for making the navbar sticky
$(document).ready(function() {
$(window).scroll(function () {
if ($(window).scrollTop() > 120) {
$("#theTopNav").addClass('navbar-fixed');
}
if ($(window).scrollTop() < 121) {
$("#theTopNav").removeClass('navbar-fixed');
}
});
});
</script>
</body>
</html>