Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/saadnpq/npq-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/public/js/navbutton.js')
-rw-r--r--exampleSite/public/js/navbutton.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/exampleSite/public/js/navbutton.js b/exampleSite/public/js/navbutton.js
new file mode 100644
index 0000000..588b78c
--- /dev/null
+++ b/exampleSite/public/js/navbutton.js
@@ -0,0 +1,25 @@
+function navToggle() {
+ isNavOpen() ? navClose() : navOpen();
+ }
+
+ /* Set the width of the side navigation to 0 and the left margin of the page content to 0 */
+function isNavOpen() {
+ navStyle = window.getComputedStyle(document.getElementById("sidenav"));
+ navWidth = navStyle.getPropertyValue('width')
+ return ( navWidth !== "0px" ) && (navWidth !== "");
+}
+
+function navOpen(){
+ let navWidth = "200px"
+ document.getElementById("sidenav").style.width = navWidth;
+ document.getElementById("closebtn").style.left= navWidth;
+ if (! window.matchMedia("(max-width: 650px)").matches){
+ document.getElementById("main").style.marginLeft = navWidth;
+ }
+}
+
+function navClose(){
+ document.getElementById("sidenav").style.width = "0px";
+ document.getElementById("main").style.marginLeft = "0px";
+ document.getElementById("closebtn").style.left= "0px";
+} \ No newline at end of file