-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
40 lines (38 loc) · 2.48 KB
/
footer.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
<footer>
<div class="container-fluid">
<div class="col-xs-12">
<a href="#intro">
<div class="top-button-wrapper center-block">
<h3><span class="glyphicon glyphicon-upload"></span></h3>
<p>TOP</p>
</div>
</a>
</div>
</div>
</footer>
<!-- SMOOTH SCROLL JAVASCRIPT -->
<script>
</script>
<!-- <script src="javascripts/pace.js"></script>
<script>
$(window).load(function() {
// Fade the wrapper out when page load completes
$("div.pace-wrapper").delay(1000).fadeOut( 1000, function() {
// Page load and animation complete
console.log("Page Loaded");
});
});
</script> -->
<script>
function openNav() {
document.getElementById("navigation").style.width = "300px";
document.getElementById("main").style.marginLeft = "250px";
}
/* Set the width of the side navigation to 0 and the left margin of the page content to 0 */
function closeNav() {
document.getElementById("navigation").style.width = "0";
document.getElementById("main").style.marginLeft = "0";
}
</script>
</body>
</html>